From c105937820952a19bfe5a72b83d29a1b650c27b2 Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Fri, 18 Oct 2024 18:33:25 -0300 Subject: [PATCH] Toggle spookify state to false in Showcase component --- src/app/_components/showcase.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/_components/showcase.tsx b/src/app/_components/showcase.tsx index d593e8c..8a5c4c6 100644 --- a/src/app/_components/showcase.tsx +++ b/src/app/_components/showcase.tsx @@ -25,7 +25,7 @@ export function Showcase({ // longTermTracksData // longTermTracksByAlbum }) { - const [spookify, setSpookify] = useState(true); + const [spookify, setSpookify] = useState(false); const [lastSpookyImageLoaded, setLastSpookyImageLoaded] = useState(0); const albumsQuantity = Object.values(tracksByAlbum).length;