fix(03-05): grep audit fixes — CEO→Project Manager in export readme, Board→Owner in local user, test assertion updates

- 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<string>
This commit is contained in:
Mikkel Georgsen 2026-03-31 09:56:12 +02:00 committed by Nexus Dev
parent 01ff1faef8
commit eca7927145

View file

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