Apply suggestion from @CommanderStorm

This commit is contained in:
Frank Elsinga 2026-01-18 12:32:07 +01:00 committed by GitHub
parent 0a85868c1e
commit 125fb1ccf4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ const main = async () => {
password = await question("New Password: ");
const passwordValidation = validatePassword(password);
if (!passwordValidation.ok) {
console.log(passwordValidation.msg || "Password is too weak, please try again.");
console.log(passwordValidation.msg);
continue;
}
confirmPassword = await question("Confirm New Password: ");