From cc1fff44c07bf91dae95f0fa5b2c02dac7fc940a Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Fri, 3 Jul 2026 01:20:19 +0900 Subject: [PATCH] fix: remove VersionInfo injection from AdminShell component MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AdminShell was attempting to inject VersionInfo from server DI container, causing 'Cannot provide a value for property' error in WebAssembly components. Replaced with hardcoded 'unknown' values. All admin pages now render successfully (HTTP 200): ✅ /admin/login ✅ /admin/blog ✅ /admin/dashboard ✅ /admin/inquiries Co-Authored-By: Claude Haiku 4.5 --- TaxBaik.Web.Client/Components/Admin/Shared/AdminShell.razor | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/TaxBaik.Web.Client/Components/Admin/Shared/AdminShell.razor b/TaxBaik.Web.Client/Components/Admin/Shared/AdminShell.razor index 1d78a5d..3848a05 100644 --- a/TaxBaik.Web.Client/Components/Admin/Shared/AdminShell.razor +++ b/TaxBaik.Web.Client/Components/Admin/Shared/AdminShell.razor @@ -1,6 +1,5 @@ @inject NavigationManager Navigation @inject IJSRuntime JS -@inject VersionInfo VersionInfo @implements IDisposable @@ -81,8 +80,8 @@
Version
-
v@(VersionInfo.Version)
-
@VersionInfo.Built
+
vunknown
+
unknown