diff --git a/components/AuthenticationForm/AuthenticationForm.tsx b/components/AuthenticationForm/AuthenticationForm.tsx index 19cd95f1..0cd56a98 100644 --- a/components/AuthenticationForm/AuthenticationForm.tsx +++ b/components/AuthenticationForm/AuthenticationForm.tsx @@ -27,7 +27,7 @@ export function AuthenticationForm(props: PaperProps) { validate: { email: (val) => (/^\S+@\S+$/.test(val) ? null : 'Invalid email'), - password: (val) => (val.length <= 6 ? 'Password should include at least 6 characters' : null), + password: (val) => (val.length <= 5 ? 'Password should include at least 6 characters' : null), }, });