MCPcopy
hub / github.com/claude-code-best/claude-code / handleSelect

Function handleSelect

src/components/InvalidSettingsDialog.tsx:18–24  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

16 */
17export function InvalidSettingsDialog({ settingsErrors, onContinue, onExit }: Props): React.ReactNode {
18 function handleSelect(value: string): void {
19 if (value === 'exit') {
20 onExit();
21 } else {
22 onContinue();
23 }
24 }
25
26 return (
27 <Dialog title="Settings Error" onCancel={onExit} color="warning">

Callers

nothing calls this directly

Calls 1

onExitFunction · 0.85

Tested by

no test coverage detected