| 15 | } |
| 16 | |
| 17 | export interface Problem { |
| 18 | sortingOrder: number; |
| 19 | id: string; |
| 20 | notionDocId: string; |
| 21 | title: string; |
| 22 | description: string; |
| 23 | type: string; |
| 24 | } |
| 25 | const CompleteTrackCard = ({ notionId, TrackData }: { notionId: string; TrackData: CompleteTrackCardProps }) => { |
| 26 | async function handleAddTrack() { |
| 27 | setIsSubmitting(true); |
nothing calls this directly
no outgoing calls
no test coverage detected