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 @@