From 3e619cb27f1c645995fe73fa604c5686da8792ae Mon Sep 17 00:00:00 2001 From: Matthew Huntington Date: Wed, 24 Sep 2025 23:22:25 -0400 Subject: [PATCH] links to song, not remove when clicked --- src/components/timer.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/timer.vue b/src/components/timer.vue index b441d66..465ff7b 100644 --- a/src/components/timer.vue +++ b/src/components/timer.vue @@ -39,10 +39,6 @@ description } from '../libs/state.js' - const removeSong = (song) => { - copiedSongs.value = copiedSongs.value.filter(curr => curr.id !== song.id) - } - export default { data() { return { @@ -239,7 +235,11 @@