@inherits LayoutComponentBase
An unhandled error has occurred.
Reload
🗙
@code {
[Inject] private Services.AuthService AuthService { get; set; } = default!;
[Inject] private NavigationManager Navigation { get; set; } = default!;
private async Task Logout()
{
await AuthService.LogoutAsync();
Navigation.NavigateTo("/login", forceLoad: true);
}
}