fix(register): explicitely check for username valid === true

This commit is contained in:
kolaente
2026-01-10 21:31:27 +01:00
parent edebed151a
commit a8f10a6e15

View File

@@ -159,7 +159,7 @@ const everythingValid = computed(() => {
credentials.email !== '' &&
validatePassword(credentials.password) === true &&
emailValid.value &&
usernameValid.value
usernameValid.value === true
})
async function submit() {