chore: make length requirement the same in signup page and change password page (#2084)

This commit is contained in:
ggurdin 2025-03-07 14:02:05 -05:00 committed by GitHub
parent a676ea0079
commit 9865c6418e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,7 +99,7 @@ class SignupPageController extends State<SignupPage> {
}
}
static const int minPassLength = 8;
static const int minPassLength = 6;
void toggleShowPassword() => setState(() => showPassword = !showPassword);