fix: 4차 리뷰 — 중복 keyframes 제거, useEffect deps 수정
Some checks failed
Client CI/CD / test (push) Failing after 39s
Client CI/CD / deploy (push) Has been skipped

- index.css 중복 @keyframes toast-in 제거 (Toast.css에 정의)
- DownloadSection useEffect deps [] → [loadInfo]

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 19:59:18 +09:00
parent 789dad1e34
commit 1335a4e929
2 changed files with 2 additions and 13 deletions

View File

@@ -22,7 +22,7 @@ export default function DownloadSection() {
.catch(() => { setLoadError(true); setReady(true); });
}, []);
useEffect(() => { loadInfo(); }, []);
useEffect(() => { loadInfo(); }, [loadInfo]);
const handlePlay = async () => {
if (!user) {

View File

@@ -31,14 +31,3 @@ a {
a:hover {
opacity: 0.85;
}
@keyframes toast-in {
from {
opacity: 0;
transform: translateX(40px);
}
to {
opacity: 1;
transform: translateX(0);
}
}