Merge pull request #1582 from leigh-pointer/1579

Fixes #1579 Exception when browsing to /login when you are already logged in
This commit is contained in:
Shaun Walker 2021-08-05 08:38:05 -04:00 committed by GitHub
commit 153934b311
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,10 @@
{
if (firstRender)
{
await username.FocusAsync();
if(PageState.User == null)
{
await username.FocusAsync();
}
}
}