We have a blazor server application in production and the issue is that users usually are filling forms while spending time on other browser tabs, and they leave the blazor server tab open for hours. When they come back to the tab, the connection to the server is lost and they have to reload the page. The issue is that at refresh they loose the data that they added in the application inputs which creates a bad user experience.
I looked into this question but is seems that the solution involves page reloading.
I there any way I can automatically reconnect to the server without refreshing the page ?