fix: update Routes.razor namespace to match unified architecture
TaxBaik CI/CD / build-and-deploy (push) Failing after 47s

CRITICAL FIX - Blazor routing:
- @namespace TaxBaik.WasmClient.Components.Admin → TaxBaik.Web.Components.Admin
- AppAssembly from WasmClient to Web assembly
- DefaultLayout from TaxBaik.WasmClient to TaxBaik.Web

This fixes:
 Router properly discovers layout components
 AdminShell renders on all protected pages
 hideLoading() function called when page ready
 Loading overlay disappears after WASM boot

Root cause: Routes.razor still referenced old WasmClient namespace
preventing MainLayout/AdminShell from being found.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-03 15:54:48 +09:00
parent dd2aa5e94a
commit 40617d16e6
19 changed files with 22 additions and 22 deletions
@@ -1,7 +1,7 @@
@page "/admin/contracts"
@rendermode @(new InteractiveWebAssemblyRenderMode(prerender: false))
@using TaxBaik.Web.Services.AdminClients
@using TaxBaik.WasmClient.Components.Admin.Shared
@using TaxBaik.Web.Components.Admin.Shared
@inject IContractBrowserClient ContractClient
@inject IClientBrowserClient ClientClient
@inject ISnackbar Snackbar