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)
This commit is contained in:
Mikkel Georgsen 2026-03-30 23:51:59 +02:00 committed by Nexus Dev
parent 28baeea4b9
commit 621b66247e

View file

@ -114,7 +114,7 @@ export function OnboardingWizard() {
const [companyGoal, setCompanyGoal] = useState("");
// Step 2
const [agentName, setAgentName] = useState<string>(VOCAB.ceo);
const [agentName, setAgentName] = useState(VOCAB.ceo);
const [adapterType, setAdapterType] = useState<AdapterType>("claude_local");
const [model, setModel] = useState("");
const [command, setCommand] = useState("");