Skip to content

Commit

Permalink
tweak: add master page wording (#915)
Browse files Browse the repository at this point in the history
same as before, correcting the english
  • Loading branch information
regiments committed Feb 23, 2024
1 parent cd46991 commit da2e673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/src/pages/auth/AddMasterCallback.tsx
Expand Up @@ -81,7 +81,7 @@ function RegisterForm({ fivemId, fivemName, profilePicture }: ApiAddMasterCallba
const password = passwordRef.current?.value || '';
const password2 = password2Ref.current?.value || '';
if (password.length < consts.adminPasswordMinLength || password.length > consts.adminPasswordMaxLength) {
setErrorMessage(`The password must be between ${consts.adminPasswordMinLength} and ${consts.adminPasswordMaxLength} digits long.`);
setErrorMessage(`The password must be between ${consts.adminPasswordMinLength} and ${consts.adminPasswordMaxLength} characters long.`);
return;
} else if (password !== password2) {
setErrorMessage('The passwords do not match.');
Expand Down

0 comments on commit da2e673

Please sign in to comment.