I have an issue that when user clicks in the verification link, the popup appears and everything goes well. However if user is logged in, the state is not being updated.
Im displaying a huge banner with text: Your email is not verified yet
But still after verifying the mail it still appears, because:
fire.auth().onAuthStateChanged((user) => {
is not being fired.
Is there a way to listen to verification event, so I can update the app after?