correct password input of user creation

This commit is contained in:
Maren Süwer
2018-09-25 13:34:56 +02:00
parent 09072d06a6
commit 2e274ae144

View File

@@ -13,5 +13,5 @@ export const isDisplayNameValid = (displayName: string) => {
return false;
};
export const isPasswordValid = (password: string) => {
return password.length > 6 && password.length < 32;
return password.length >= 6 && password.length < 32;
};