Hi,
How we can manage errors from firebase authentification ? https://firebase.google.com/docs/auth/ios/errors
When i catch error, i have this kind of message
Error: The email address is already in use by another account.
at createErrorFromErrorData (d:\PartyStories\node_modules\react-native\Libraries\BatchedBridge\NativeModules.js:116)
Thanks.
Hello,
The errors returned to the JS side have been converted into the same format as the firebase web sdk errors: https://firebase.google.com/docs/reference/js/firebase.auth.Auth
You just need to handle them the same way you would if you’re using the web sdk.
A rough example in your case it would be something like: