fix for clearing all tracks from the queue

This commit is contained in:
Violet Caulfield
2024-12-28 09:18:47 -06:00
parent 63c13efdd5
commit 13405b5e12
2 changed files with 1 additions and 2 deletions
+1
View File
@@ -34,6 +34,7 @@ const PlayerContextInitializer = () => {
const clearQueue = async () => {
console.debug("Clearing queue")
await removeUpcomingTracks();
await remove(0)
setQueue([]);
}