fix logout issue introduced when logging was added

This commit is contained in:
Shaun Walker
2019-10-24 22:19:13 -04:00
parent 3d7ae6a743
commit 15460eafb7
3 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@
private async Task LogoutUser()
{
await UserService.LogoutUserAsync();
await UserService.LogoutUserAsync(PageState.User);
var authstateprovider = (IdentityAuthenticationStateProvider)ServiceProvider.GetService(typeof(IdentityAuthenticationStateProvider));
if (authstateprovider == null)