From 1335a4e9294c018ed8daefdc4201d1b344c921a1 Mon Sep 17 00:00:00 2001 From: tolelom <98kimsungmin@naver.com> Date: Sun, 15 Mar 2026 19:59:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=204=EC=B0=A8=20=EB=A6=AC=EB=B7=B0=20?= =?UTF-8?q?=E2=80=94=20=EC=A4=91=EB=B3=B5=20keyframes=20=EC=A0=9C=EA=B1=B0?= =?UTF-8?q?,=20useEffect=20deps=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - index.css 중복 @keyframes toast-in 제거 (Toast.css에 정의) - DownloadSection useEffect deps [] → [loadInfo] Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/DownloadSection.jsx | 2 +- src/index.css | 13 +------------ 2 files changed, 2 insertions(+), 13 deletions(-) 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