🐛 Fix schema validation for user creation

This commit is contained in:
Manuel
2023-07-31 22:36:43 +02:00
parent 061ae1ae6c
commit 961b8024ab
3 changed files with 22 additions and 23 deletions
@@ -74,5 +74,5 @@ const randomString = () => {
};
export const createAccountSecurityStepValidationSchema = z.object({
password: z.string().min(10).max(50),
password: z.string().min(8).max(100),
});