I'm working on a Blazor server application with Identity, and I have some doubts about security.
In a situation when the user opens multiple browser tabs and then logs out in one, all other tabs still consider user authorized. The application can be used until the next page refresh.
As I understood from the documentation on AuthenticationStateProvider, it works only in the current circuit, and it can't see the user logged out in another tab.
Is there a way to inform other tabs that the user is logged out?