Skip to content

Commit

Permalink
Fixed-Issue-PalisadoesFoundation#1285 Inconsistent character limit du…
Browse files Browse the repository at this point in the history
…ring organization creation for both name and description.
  • Loading branch information
gauravsingh94 committed Dec 30, 2023
1 parent c1f3ece commit 733a712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/OrgList/OrgList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ function orgList(): JSX.Element {
value={formState.descrip}
onChange={(e): void => {
const descriptionText = e.target.value;
if (descriptionText.length < 100) {
if (descriptionText.length < 200) {
setFormState({
...formState,
descrip: e.target.value,
Expand Down

0 comments on commit 733a712

Please sign in to comment.