I am using Dot Net 8 Blazor Interactive server with default authentication provided by the template.The default authentication template uses IdentityRevalidatingAuthenticationStateProvider and a default setup.
I tinkered around a bit, and after setting application cookie expire time to 1 min and RevalidationInterval to 1 min also, to see what happens - I found out that unless I refresh the page, the cookie is being deleted from the application cookie storage, but the user is not being logged out or (with viewed through debug) is being kept IsAuthenticated to true.
How would I go about either refreshing, or on page navigation, if the cookie is gone or timed out, logout the user.