-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump extra long text input limit to 750 characters (#3299)
- Loading branch information
1 parent
ce69e5a
commit b5493f1
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ export const userDataSchema = ({ type }: TextInput): SchemaOf<UserData> => | |
return "Your answer must be 250 characters or fewer."; | ||
} | ||
if (type === TextInputType.ExtraLong) { | ||
return "Your answer must be 500 characters or fewer."; | ||
return "Your answer must be 750 characters or fewer."; | ||
} | ||
if (type === TextInputType.Email) { | ||
return "Enter an email address in the correct format, like [email protected]"; | ||
|
@@ -52,7 +52,7 @@ export const userDataSchema = ({ type }: TextInput): SchemaOf<UserData> => | |
return Boolean(value && value.length <= 250); | ||
} | ||
if (type === TextInputType.ExtraLong) { | ||
return Boolean(value && value.length <= 500); | ||
return Boolean(value && value.length <= 750); | ||
} | ||
if (type === TextInputType.Email) { | ||
return Boolean(value && emailRegex.test(value)); | ||
|