| 20 | import { useHandledAsyncCallback } from "~/utils/hooks"; |
| 21 | |
| 22 | interface AddCreditsProps { |
| 23 | projectId: string; |
| 24 | children: React.ReactNode; |
| 25 | } |
| 26 | |
| 27 | export const AddCredits: React.FC<AddCreditsProps> = ({ projectId, children }) => { |
| 28 | const dialogDisclosure = useDisclosure(); |
nothing calls this directly
no outgoing calls
no test coverage detected