Skip to content

Commit

Permalink
fix(LoginForm.tsx): max length old value to new (#980)
Browse files Browse the repository at this point in the history
  • Loading branch information
danny-avila authored Sep 22, 2023
1 parent 1be6c48 commit 1a77fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Auth/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
},
})}
Expand Down

0 comments on commit 1a77fb4

Please sign in to comment.