Fix length form rule

This commit is contained in:
Piotr Rogowski 2022-10-19 16:54:21 +02:00
parent 78257f7f25
commit ffa6ce97b6
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export const requiredTextRules: Rule[] = [{
required: true,
message: REQUIRED_MESSAGE,
whitespace: true,
len: 3,
pattern: /^.{3,}$/,
}];
export const requiredRules: Rule[] = [{