| 18 | } from '@/components/ui/dialog'; |
| 19 | |
| 20 | interface DialogProps { |
| 21 | isOpen: boolean; |
| 22 | onClose: () => void; |
| 23 | title: string; |
| 24 | } |
| 25 | |
| 26 | export default function NewPayoutDialog({ |
| 27 | isOpen, |
nothing calls this directly
no outgoing calls
no test coverage detected