| 5 | import { updateTrack } from "../utils"; |
| 6 | |
| 7 | interface TrackCardProps extends Track { |
| 8 | categories: { |
| 9 | category: { |
| 10 | id: string; |
| 11 | category: string; |
| 12 | }; |
| 13 | }[]; |
| 14 | } |
| 15 | |
| 16 | const EditTrackCard = ({ Track, categories }: { Track: TrackCardProps; categories: Categories[] }) => { |
| 17 | const [isEditing, setIsEditing] = useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected