Repair human friendly errors with additional message

This commit is contained in:
Ray 2023-10-10 08:25:52 +00:00 committed by GitHub
parent 5aadd3793d
commit 84f376f1ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -51,13 +51,17 @@ export function Signin( props ) {
//console.log(code) //console.log(code)
// setErrorCode( code ) // setErrorCode( code )
switch(code) { switch(code) {
case"auth/invalid-email": case "auth/invalid-email" :
setErrorCode("The email address is invalid") setErrorCode("The email address is invalid")
break break
case"auth/invalid-login-credentials": case "auth/invalid-login-credentials" :
setErrorCode("Credentials supplied is not in our system") setErrorCode("Credentials supplied is not in our system")
break break
default: case "auth/user-not-found" :
setErrorCode("Credentials supplied is not in our system")
break
break
default:
break break
} }
}) })