Toggle spookify state to false in Showcase component

This commit is contained in:
2024-10-18 18:33:25 -03:00
parent 0650cc4b95
commit c105937820

View File

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