From 5d6dadda83c310c8e178494aaacd1652e5bc94e3 Mon Sep 17 00:00:00 2001 From: Dotta Date: Mon, 16 Mar 2026 10:05:03 -0500 Subject: [PATCH] fix: default import target to new company instead of existing The /company/import page now defaults the target dropdown to "Create new company" instead of the current company. The existing company option is still available in the dropdown. Co-Authored-By: Paperclip Co-Authored-By: Claude Opus 4.6 --- ui/src/pages/CompanyImport.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/pages/CompanyImport.tsx b/ui/src/pages/CompanyImport.tsx index 62c4d747..ffb4b20e 100644 --- a/ui/src/pages/CompanyImport.tsx +++ b/ui/src/pages/CompanyImport.tsx @@ -478,7 +478,7 @@ export function CompanyImport() { } | null>(null); // Target state - const [targetMode, setTargetMode] = useState<"existing" | "new">("existing"); + const [targetMode, setTargetMode] = useState<"existing" | "new">("new"); const [newCompanyName, setNewCompanyName] = useState(""); // Preview state @@ -897,10 +897,10 @@ export function CompanyImport() { setImportPreview(null); }} > + -