Hi everyone, we are trying to investigate how to manage session timeouts and inactivity.
What we are experiencing on our production server is the classic "Attempting to reconnect to the server" seemingly sporadically. (I don't see it when testing locally through Visual Studio)
We were just wondering if anyone had any ideas on how to customize this in some way? Or how to detect if a user was inactive / their session expired and to basically throw them back to the login page.
For context, we are using Azure AD (Entra), we had this application built from the Radzen Blazor Studio before the V5 release. I tried the app.MapFallbackToPage("/fallback"); where "/fallback" was my own .razor file, but I was told that the "MapFallbackToPage" refers to the old .cshtml files, which we do not use. So cannot use MapFallbackToPage, whether this is even the correct thing to look for, unsure.
Any ideas or recommendations would be appreciated!