Skip to content

Commit 4eb9d99

Browse files
committed
User password validation fix
1 parent 1acc81e commit 4eb9d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/api/src/modules/user/mutation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function userSignup({ params: { name, email, password, passwordRepe
3131
{
3232
data: { value: password, length: params.user.rules.passwordMinLength },
3333
check: 'lengthMin',
34-
message: translate.t('user.messages.fields.passwordMinLength', { length: params.user.rules.nameMinLength })
34+
message: translate.t('user.messages.fields.passwordMinLength', { length: params.user.rules.passwordMinLength })
3535
},
3636
{
3737
data: { value1: password, value2: passwordRepeat },

0 commit comments

Comments
 (0)