I\'m setting up an authorisation function with e-mail and password. Everything works fine but when i create a new user, the application sends an e-mail with a verification l
This is not a bug, but expected behavior.
Email verification happens out of band (as in: you click a link in your email client, not in the app), so the app is not aware of the verification status being changed. This means that it can't automatically refresh the ID token, which is where the client gets profile information comes from, in the client.
The token auto-refreshes every hour, so it will update eventually. If you want to get the updated value sooner, you can force the token to refresh.
Also see: