Unfortunately it does not refresh at first login. Have to figure out how to make it refresh
8 lines
220 B
Text
8 lines
220 B
Text
@inject NavigationManager navigationManager
|
|
<div class="loader loader-bouncing"><span>Redirecting...</span></div>
|
|
|
|
@code {
|
|
protected override void OnInitialized() {
|
|
navigationManager.NavigateTo("/login");
|
|
}
|
|
}
|