From 6bd6138b2af89739b2b45e9ea4740a707fcabf5d Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Tue, 6 Jan 2026 10:39:44 -0500 Subject: [PATCH] chore(client): add Extensions namespace to global imports Add @using JdeScoping.Client.Extensions to _Imports.razor so that extension methods (like ViewModelMappingExtensions) are available globally in Razor components without explicit using statements. --- NEW/src/JdeScoping.Client/_Imports.razor | 1 + 1 file changed, 1 insertion(+) diff --git a/NEW/src/JdeScoping.Client/_Imports.razor b/NEW/src/JdeScoping.Client/_Imports.razor index 6336026..285e41b 100644 --- a/NEW/src/JdeScoping.Client/_Imports.razor +++ b/NEW/src/JdeScoping.Client/_Imports.razor @@ -14,6 +14,7 @@ @using JdeScoping.Client @using JdeScoping.Client.Auth @using JdeScoping.Client.Components.FilterPanels +@using JdeScoping.Client.Extensions @using JdeScoping.Client.Components.Shared @using JdeScoping.Client.Layout @using JdeScoping.Client.Models