Updating game data to mid season patch and made card gallery nicer

This commit is contained in:
2026-07-17 09:42:50 -04:00
parent 7b0f2ce1a5
commit 5aff9910c1
709 changed files with 1485 additions and 547 deletions
+4 -4
View File
@@ -1,7 +1,6 @@
@page "/login"
@rendermode InteractiveServer
@attribute [Microsoft.AspNetCore.Authorization.AllowAnonymous]
@using Microsoft.AspNetCore.Components.Authorization
@attribute [AllowAnonymous]
@inject IJSRuntime JS
@inject NavigationManager Nav
@inject AuthenticationStateProvider AuthStateProvider
@@ -75,7 +74,7 @@
try
{
await JS.InvokeVoidAsync("passkeyLogin");
Nav.NavigateTo("/", forceLoad: true);
Nav.NavigateTo("/", true);
}
catch (Exception ex)
{
@@ -94,7 +93,7 @@
try
{
await JS.InvokeVoidAsync("passkeyEnroll");
Nav.NavigateTo("/", forceLoad: true);
Nav.NavigateTo("/", true);
}
catch (Exception ex)
{
@@ -107,4 +106,5 @@
}
private record StatusResponse(bool Enrolled, bool Authenticated);
}