Debugging live-only bug.

This commit is contained in:
2024-02-09 09:22:20 -06:00
parent 2880acb585
commit 46c8f1c3af
5 changed files with 23 additions and 34 deletions

View File

@@ -22,8 +22,8 @@
<div>
<p>How would you like to proceed?</p>
<p>
<button @onclick="Account.LoginWithMicrosoftAccount">Log in</button>
<button @onclick="Account.LoginWithGuestAccount">Proceed as Guest</button>
<button @onclick="async () => await Account.LoginWithMicrosoftAccount()">Log in</button>
<button @onclick="async () => await Account.LoginWithGuestAccount()">Proceed as Guest</button>
@if (AccountState.User != null)
{
/* This is an escape hatch in case user login fails in certain ways. */