| 14 | import { Button } from '@/components/ui/button' |
| 15 | |
| 16 | interface AssistantPanelProps { |
| 17 | projectName: string |
| 18 | isOpen: boolean |
| 19 | onClose: () => void |
| 20 | } |
| 21 | |
| 22 | const STORAGE_KEY_PREFIX = 'assistant-conversation-' |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected