From 4b7bdbaffb9c2ed9276b5ec73391d582eae432e7 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Fri, 3 Jul 2026 02:08:42 +0900 Subject: [PATCH] fix: disable prerendering for interactive WebAssembly - menu interactivity issue Problem: With prerender: true, static HTML renders first. Menu loads but is not interactive until WebAssembly runtime finishes loading. Users clicking before runtime loads see no response. Solution: Set prerender: false to ensure menu and all controls are interactive immediately. Trade-off: Initial page load shows blank screen while WebAssembly bundles download, but once loaded, all interactivity is immediate (better UX overall). Co-Authored-By: Claude Haiku 4.5 --- TaxBaik.Web.Client/Components/Admin/App.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TaxBaik.Web.Client/Components/Admin/App.razor b/TaxBaik.Web.Client/Components/Admin/App.razor index e921ae2..6a64f6a 100644 --- a/TaxBaik.Web.Client/Components/Admin/App.razor +++ b/TaxBaik.Web.Client/Components/Admin/App.razor @@ -36,7 +36,7 @@ - +