Replies: 1 comment 3 replies
-
It does in my app const userCredential = await firebase
.auth()
.createUserWithEmailAndPassword(email, password);
// If you need to do something with the user, do it here
// RootView::userChangedListener will automatically route and unmount this component
console.log('Register::_onRegisterClick - created the user successfully?', userCredential); |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm calling the
auth().createUserWithEmailAndPassword
but nothing is returned. The user is created in firebase and the auth state changed call happens. However, the promise is never sent back after calling this function.Beta Was this translation helpful? Give feedback.
All reactions