| 19 | import { DefaultInput } from '../commonUI/Input' |
| 20 | |
| 21 | interface AiDialogProps { |
| 22 | isOpen: boolean |
| 23 | onClose: () => void |
| 24 | onSubmit: (prompt: string) => void |
| 25 | isLoading: boolean |
| 26 | title: string |
| 27 | placeholder: string |
| 28 | } |
| 29 | |
| 30 | const MAX_CHARS = 100 //TODO: move to const folder |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected