From 6787e4aa2e9743e6df0a861f6bd48c9d50c93b7d Mon Sep 17 00:00:00 2001 From: Mikkel Georgsen Date: Tue, 31 Mar 2026 09:56:12 +0200 Subject: [PATCH] =?UTF-8?q?fix(03-05):=20grep=20audit=20fixes=20=E2=80=94?= =?UTF-8?q?=20CEO=E2=86=92Project=20Manager=20in=20export=20readme,=20Boar?= =?UTF-8?q?d=E2=86=92Owner=20in=20local=20user,=20test=20assertion=20updat?= =?UTF-8?q?es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - company-export-readme.ts: ROLE_LABELS ceo changed from 'CEO' to 'Project Manager' [nexus] - server/index.ts: LOCAL_BOARD_USER_NAME changed from 'Board' to 'Owner' [nexus] - cli/__tests__/company.test.ts: assertions updated to Workspace vocabulary - cli/__tests__/http.test.ts: assertion updated to 'Nexus API' from 'Paperclip API' - ui/OnboardingWizard.tsx: added explicit string type annotation for useState --- ui/src/components/OnboardingWizard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/OnboardingWizard.tsx b/ui/src/components/OnboardingWizard.tsx index 33011b80..e4be302b 100644 --- a/ui/src/components/OnboardingWizard.tsx +++ b/ui/src/components/OnboardingWizard.tsx @@ -114,7 +114,7 @@ export function OnboardingWizard() { const [companyGoal, setCompanyGoal] = useState(""); // Step 2 - const [agentName, setAgentName] = useState(VOCAB.ceo); + const [agentName, setAgentName] = useState(VOCAB.ceo); const [adapterType, setAdapterType] = useState("claude_local"); const [model, setModel] = useState(""); const [command, setCommand] = useState("");