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
For a single page app, there are too many fetch requests, e.g., ``home page will trigger getUserQueues almost every time it is rendered. Some of these issues are addressed in #544. I also identified a - couple of more places/events that trigger it:
On login - the app goes away and back to initiating page, causing a re-render. A possible solution is loginWithPopup.
On logout - app reloads origin page, causing another render. A possible solution is using different logout options.
Clicking Home in navigation. Currently, the home button is just an HTML anchor. A possible solution is using router history.
Clicking logo in the navbar, when current page is not home page. A possible solution TBD.
The text was updated successfully, but these errors were encountered:
For a single page app, there are too many fetch requests, e.g., ``home page will trigger
getUserQueues
almost every time it is rendered. Some of these issues are addressed in #544. I also identified a - couple of more places/events that trigger it:Home
in navigation. Currently, the home button is just an HTML anchor. A possible solution is using router history.The text was updated successfully, but these errors were encountered: