Files
taxbaik/TaxBaik.Web.Client/Components/Admin/Pages/AdminIndex.razor
T
kjh2064 5d1eeb8485
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m14s
fix: add @rendermode InteractiveWebAssembly to all admin pages
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>
2026-07-03 02:32:57 +09:00

12 lines
265 B
Plaintext

@page "/admin"
@rendermode InteractiveWebAssembly
@attribute [Authorize]
@inject NavigationManager NavigationManager
@code {
protected override void OnInitialized()
{
NavigationManager.NavigateTo("/taxbaik/admin/dashboard", replace: true);
}
}