diff --git a/src/components/DownloadSection.jsx b/src/components/DownloadSection.jsx index 598ee8f..a6b3909 100644 --- a/src/components/DownloadSection.jsx +++ b/src/components/DownloadSection.jsx @@ -22,7 +22,7 @@ export default function DownloadSection() { .catch(() => { setLoadError(true); setReady(true); }); }, []); - useEffect(() => { loadInfo(); }, []); + useEffect(() => { loadInfo(); }, [loadInfo]); const handlePlay = async () => { if (!user) { diff --git a/src/index.css b/src/index.css index 6f75ecd..1bc8a3a 100644 --- a/src/index.css +++ b/src/index.css @@ -30,15 +30,4 @@ a { a:hover { opacity: 0.85; -} - -@keyframes toast-in { - from { - opacity: 0; - transform: translateX(40px); - } - to { - opacity: 1; - transform: translateX(0); - } -} +} \ No newline at end of file