()
| 13 | }) => { |
| 14 | const [isSubmitting, setIsSubmitting] = useState(false); |
| 15 | async function handleAddTracks() { |
| 16 | setIsSubmitting(true); |
| 17 | for (const track of TracksNotinSearch) { |
| 18 | await insertData(track.id); |
| 19 | } |
| 20 | setIsSubmitting(false); |
| 21 | } |
| 22 | async function handlecreateCollection() { |
| 23 | toast({ |
| 24 | title: "Creating Collection", |
nothing calls this directly
no test coverage detected