From 28643c38b829f0dc93dd692b2926f5d6f600dd3a Mon Sep 17 00:00:00 2001 From: Yuri Tatishchev Date: Thu, 12 Feb 2026 21:56:14 -0800 Subject: [PATCH] feat(queue): add confirmation dialog when clearing the queue Wraps the clear button in an AlertDialog that shows the number of songs to be removed, requiring explicit confirmation before clearing. --- src/lib/components/player/Queue.svelte | 34 +++++++++++++++++++------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/src/lib/components/player/Queue.svelte b/src/lib/components/player/Queue.svelte index c317481..93d44c5 100644 --- a/src/lib/components/player/Queue.svelte +++ b/src/lib/components/player/Queue.svelte @@ -1,5 +1,6 @@