From 1a77fb4fd52a188644a8bfea11bd1807f1c3c361 Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Fri, 22 Sep 2023 05:49:18 -0400 Subject: [PATCH] fix(LoginForm.tsx): max length old value to new (#980) --- client/src/components/Auth/LoginForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Auth/LoginForm.tsx b/client/src/components/Auth/LoginForm.tsx index 191e3c72ef..d04b4be6b3 100644 --- a/client/src/components/Auth/LoginForm.tsx +++ b/client/src/components/Auth/LoginForm.tsx @@ -76,7 +76,7 @@ function LoginForm({ onSubmit }: TLoginFormProps) { message: localize('com_auth_password_min_length'), }, maxLength: { - value: 40, + value: 128, message: localize('com_auth_password_max_length'), }, })}