fix(register): explicitely check for username valid === true
This commit is contained in:
parent
edebed151a
commit
a8f10a6e15
|
|
@ -159,7 +159,7 @@ const everythingValid = computed(() => {
|
|||
credentials.email !== '' &&
|
||||
validatePassword(credentials.password) === true &&
|
||||
emailValid.value &&
|
||||
usernameValid.value
|
||||
usernameValid.value === true
|
||||
})
|
||||
|
||||
async function submit() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue