1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

replace ?. with &&

This commit is contained in:
Rory Powell 2021-09-29 17:55:08 +01:00
parent 93d4ee4aad
commit f089c20d60

View file

@ -67,7 +67,7 @@ async function saveUser(
// check root account users in account portal
if (!env.SELF_HOSTED) {
const account = await accounts.getAccount(email)
if (account?.verified) {
if (account && account.verified) {
throw `Email address ${email} already in use.`
}
}