🚸 Mark login field as required (#1166)

This commit is contained in:
Patrick Arminio
2024-04-12 17:50:14 +02:00
committed by GitHub
parent c947cb09e1
commit 615170dc34
2 changed files with 6 additions and 0 deletions

View File

@@ -43,6 +43,10 @@ const useAuth = () => {
errDetail = err.message
}
if (Array.isArray(errDetail)) {
errDetail = "Something went wrong"
}
setError(errDetail)
},
})