Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
tiago-bacelar committed Feb 6, 2024
1 parent 513f233 commit 7e0099e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layout/SignUp/components/SignUpForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function SignUpForm({ courses }) {
updateError("You must have a scanned QR code");
} else if (!validateNickname(nickname)) {
updateError(
"Your username must be between 3 and 15 alphanumeric characters, underscores and dashes (no spaces allowed)"
"Your nickname must be between 3 and 15 alphanumeric characters, underscores and dashes (no spaces allowed)"
);
} else if (!validatePassword(password)) {
updateError("Your password must be at least 8 characters long");
Expand Down

0 comments on commit 7e0099e

Please sign in to comment.