| 36 | }; |
| 37 | |
| 38 | interface AddCreditsDialogProps { |
| 39 | projectId: string; |
| 40 | disclosure: ReturnType<typeof useDisclosure>; |
| 41 | } |
| 42 | |
| 43 | const AddCreditsDialog: React.FC<AddCreditsDialogProps> = ({ projectId, disclosure }) => { |
| 44 | const [creditsInput, setCreditsInput] = useState("0"); |
nothing calls this directly
no outgoing calls
no test coverage detected