diff --git a/front/src/composables/audio/queue.ts b/front/src/composables/audio/queue.ts index 4a29b18d8..2f5afb3f5 100644 --- a/front/src/composables/audio/queue.ts +++ b/front/src/composables/audio/queue.ts @@ -253,9 +253,6 @@ export const useQueue = createGlobalState(() => { ? shuffledIds : tracks - const [id] = list.value.splice(from, 1) - list.value.splice(to, 0, id) - const current = currentIndex.value // NOTE: We're batching the changes to avoid reactivity issues related to the currentIndex being clamped at list length