fix: add @rendermode InteractiveWebAssembly to all admin pages
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m14s

Problem: Page components were not rendering content because @rendermode was only
on App.razor and Routes.razor, not on individual @page components.

Solution: Add @rendermode InteractiveWebAssembly to all admin page components
to ensure they render interactively in WebAssembly context.

Result: All admin pages now render their content correctly.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-03 02:32:57 +09:00
parent 04a5e15435
commit 5d1eeb8485
29 changed files with 32 additions and 0 deletions
@@ -1,4 +1,5 @@
@page "/admin/clients/{ClientId:int}"
@rendermode InteractiveWebAssembly
@attribute [Authorize]
@using TaxBaik.Web.Services
@using TaxBaik.Web.Services.AdminClients