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
I don't get redirected successfully WHEN I have a clean situation for my user meaning I delete my anonymous user and my logged in user from firebase console (Manage users).
Before, after logging in on Google, componentDidUpdate was called and I could succesfully be redirected to the last page using react router. Now I can't anymore.
What I did to solve the issue is to use window.history.back(); inside signInSuccessWithAuthResult function.
Am I doing something wrong with the configuration? I can't understand why componentDidUpdate is not fired anymore.
The text was updated successfully, but these errors were encountered:
Hello,
first of all Happy Easter.
I think there is a bug when using
autoUpgradeAnonymousUsers: true
inuiConfig
.I will paste my code and I'll explain how to reproduce.
initialization code:
And this is my react component:
After login, before adding the option
autoUpgradeAnonymousUsers: true
for which I also had to addbased on documentation from Handling anonymous user upgrade merge conflicts paragraph on https://firebase.google.com/docs/auth/web/firebaseui
I don't get redirected successfully WHEN I have a clean situation for my user meaning I delete my anonymous user and my logged in user from firebase console (Manage users).
Before, after logging in on Google,
componentDidUpdate
was called and I could succesfully be redirected to the last page using react router. Now I can't anymore.What I did to solve the issue is to use
window.history.back();
insidesignInSuccessWithAuthResult
function.Am I doing something wrong with the configuration? I can't understand why
componentDidUpdate
is not fired anymore.The text was updated successfully, but these errors were encountered: