From 1e699b51ae3aa5baf90b553d6fa838a20c324061 Mon Sep 17 00:00:00 2001 From: makearmy Date: Mon, 29 Sep 2025 14:15:13 -0400 Subject: [PATCH] fix(components): point SettingsSwitcher to '@/components/forms/SettingsSubmit' --- components/portal/SettingsSwitcher.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/portal/SettingsSwitcher.tsx b/components/portal/SettingsSwitcher.tsx index 1aceed82..fe4dc2f4 100644 --- a/components/portal/SettingsSwitcher.tsx +++ b/components/portal/SettingsSwitcher.tsx @@ -13,7 +13,7 @@ const CO2GantryPanel = dynamic(() => import("@/app/settings/co2-gantry/page"), { // NEW: embed the submission form in the "Add" tab const SettingsSubmit = dynamic( - () => import("@/app/components/forms/SettingsSubmit"), + () => import("@/components/forms/SettingsSubmit"), { ssr: false } );