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
We are calling user/email/verify GET 5 times when:
the user is already logged in
hasn't completed email verification
loads the email verification page
To resolve, we want to implement 2 improvements:
Skip adding the email verification validator from web-js if we are already adding it in auth-react
Add a global, in-memory cooldown for each refresh function. In the shouldRefresh calls we should check this cooldown by default and limit refresh calls to no more than 1 per second.
The text was updated successfully, but these errors were encountered:
We are calling
user/email/verify GET
5 times when:To resolve, we want to implement 2 improvements:
The text was updated successfully, but these errors were encountered: