You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Correctly parses error codes with details messages in Firebase Auth. (#422)
* Correctly parses error codes with details messages in Firebase Auth.
```
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalid",
"message": "INVALID_PHONE_NUMBER : Phone number is too short"
}
],
"code": 400,
"message": "INVALID_PHONE_NUMBER : Phone number is too short"
}
}
```
The above will throw error code auth/invalid-phone-number and the
message will be "Phone number is too short".
* Adds CHANGELOG note for fix.
0 commit comments