Fix gitea issues (#54)
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m16s

Co-authored-by: Maxime Adler <madler@sqli.com>
Reviewed-on: #54
This commit was merged in pull request #54.
This commit is contained in:
2025-05-18 16:27:56 +02:00
parent edd3ac78de
commit 1baa2a73fe
38 changed files with 301 additions and 197 deletions

View File

@@ -24,6 +24,7 @@ public class GameBaseComponent : ComponentBase
try
{
IsLoading = true;
StateHasChanged();
Categories = await GameGateway.FetchCategories();
}
@@ -34,6 +35,7 @@ public class GameBaseComponent : ComponentBase
finally
{
IsLoading = false;
StateHasChanged();
}
}