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
The app will randomly log the user out. Tokens are not refreshing as they should. Investigate and ensure that the user can stay logged in for a reasonable time.
The text was updated successfully, but these errors were encountered:
The thing was that the lower level lib for it changed the error formatting and on some update we classified expired access tokens as a failure case. This meant you had to do a call to refresh (any api call would trigger it) in the last 5 minutes (ie the window when frontend triggers a refresh) and before it's expired so it doesn't fail. That's fixed now and it works as long as the accessToken is valid (even if expired) and the refresh token is still valid (which holds for 30 days).
On that note I wanted to suggest a small improvement, we should add a "remember me" checkmark on the login modal and if that is checked persist the refresh token, otherwise skip holding onto the refresh token.
The app will randomly log the user out. Tokens are not refreshing as they should. Investigate and ensure that the user can stay logged in for a reasonable time.
The text was updated successfully, but these errors were encountered: