| 28 | } |
| 29 | |
| 30 | interface ApiKeyDialogProps { |
| 31 | open: boolean; |
| 32 | onClose: () => void; |
| 33 | onSuccess: () => void; |
| 34 | } |
| 35 | |
| 36 | export function ApiKeyDialog({ open, onClose, onSuccess }: ApiKeyDialogProps) { |
| 37 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…