Fix password validation for creating a new user. Must be between 6 and 32 chars inclusive.
This commit is contained in:
parent
5fa1a5e661
commit
e27cc0c64c
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export async function createUser(): Promise<void> {
|
|||
password: true,
|
||||
prompt: "Enter user password",
|
||||
validateInput: (value) => {
|
||||
if (value.length <= 6) {
|
||||
if (value.length < 6) {
|
||||
return "Password must be at least 6 characters long.";
|
||||
}
|
||||
if (value.length > 32) {
|
||||
|
|
Loading…
Reference in a new issue