diff --git a/src/components/windows/main/SpotifyCard.astro b/src/components/windows/main/SpotifyCard.astro index e3a588f..4dd0201 100644 --- a/src/components/windows/main/SpotifyCard.astro +++ b/src/components/windows/main/SpotifyCard.astro @@ -213,6 +213,14 @@ import HeartIcon from "@assets/svg/heart.svg"; (document.querySelector(".lastfm-link") as HTMLLinkElement).href = track.url; + + if ( + new URLSearchParams(window.location.search).has("iamanidiot") && + (track.artist.includes("Taylor Swift") || + track.name.includes("Taylor Swift")) + ) { + spotifyCardWrapper.style = ""; + } } else { spotifyCardWrapper.style = ""; }