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:
parent
28baeea4b9
commit
621b66247e
1 changed files with 1 additions and 1 deletions
|
|
@ -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("");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue