| 16 | import { toast } from "sonner"; |
| 17 | |
| 18 | interface ModalProps { |
| 19 | organizationId: string; |
| 20 | isOpen: boolean; |
| 21 | onClose: () => void; |
| 22 | onProjectCreated: () => Promise<void>; |
| 23 | } |
| 24 | |
| 25 | interface CreateProjectInput { |
| 26 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected