From 621b66247e59d97f69793b8b7230cfbfaebf18b6 Mon Sep 17 00:00:00 2001 From: Mikkel Georgsen Date: Mon, 30 Mar 2026 23:51:59 +0200 Subject: [PATCH] feat(03-02): replace display strings in OnboardingWizard, LiveUpdatesProvider, and assignees lib - OnboardingWizard.tsx: DEFAULT_TASK_DESCRIPTION uses VOCAB.ceo/company/hire; useState uses VOCAB.ceo; task title updated to Nexus vocabulary; step tab label uses VOCAB.company; placeholder uses VOCAB.ceo; launch summary uses VOCAB.company - LiveUpdatesProvider.tsx: resolveActorLabel returns VOCAB.board instead of hardcoded 'Board' - assignees.ts: formatAssigneeUserLabel returns VOCAB.board for local-board user - assignees.test.ts: updated expectation to 'Owner' (VOCAB.board value) --- 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 e4be302b..33011b80 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("");