From 33e1ac1c19dd0c6db2e08bdb3214ac8d8b625796 Mon Sep 17 00:00:00 2001 From: Adam French Date: Sat, 29 Nov 2025 01:03:48 +0000 Subject: [PATCH] fixing bugs --- nginx/vue/src/components/spotify/Listening.vue | 1 - nginx/vue/src/components/spotify/Recent.vue | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/nginx/vue/src/components/spotify/Listening.vue b/nginx/vue/src/components/spotify/Listening.vue index 1b2ac0e..ad5533e 100644 --- a/nginx/vue/src/components/spotify/Listening.vue +++ b/nginx/vue/src/components/spotify/Listening.vue @@ -24,7 +24,6 @@ export default { const res = await fetch("/api/spotify/listening"); if (!res.ok) throw new Error("Failed to fetch Spotify data"); song.value = await res.json(); - console.log(data); } catch (err) { console.error(err); } diff --git a/nginx/vue/src/components/spotify/Recent.vue b/nginx/vue/src/components/spotify/Recent.vue index 633e3d8..efff793 100644 --- a/nginx/vue/src/components/spotify/Recent.vue +++ b/nginx/vue/src/components/spotify/Recent.vue @@ -1,12 +1,12 @@