MCPcopy
hub / github.com/codeaashu/claude-code / launchInvalidSettingsDialog

Function launchInvalidSettingsDialog

src/dialogLaunchers.tsx:44–52  ·  view source on GitHub ↗
(root: Root, props: {
  settingsErrors: ValidationError[];
  onExit: () => void;
})

Source from the content-addressed store, hash-verified

42 * Original callback wiring: onContinue={done}, onExit passed through from caller.
43 */
44export async function launchInvalidSettingsDialog(root: Root, props: {
45 settingsErrors: ValidationError[];
46 onExit: () => void;
47}): Promise<void> {
48 const {
49 InvalidSettingsDialog
50 } = await import('./components/InvalidSettingsDialog.js');
51 return showSetupDialog(root, done => <InvalidSettingsDialog settingsErrors={props.settingsErrors} onContinue={done} onExit={props.onExit} />);
52}
53
54/**
55 * Site ~4229: AssistantSessionChooser (pick a bridge session to attach to).

Callers 1

runFunction · 0.85

Calls 1

showSetupDialogFunction · 0.85

Tested by

no test coverage detected