We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c13a38d commit 7ceb1f4Copy full SHA for 7ceb1f4
1 file changed
src/Components/New/useNewForm.ts
@@ -70,8 +70,8 @@ export function useNewForm() {
70
function setDescription(value = description) {
71
let err: boolean = false;
72
73
- if (value && (value.length < 10 || value.length > 200)) {
74
- setValDescription("Description must be between 10 and 200 characters.");
+ if (value && (value.length < 10 || value.length > 500)) {
+ setValDescription("Description must be between 10 and 500 characters.");
75
err = true;
76
}
77
0 commit comments