diff --git a/frontend/src/routes/study/review-box/+page.svelte b/frontend/src/routes/study/review-box/+page.svelte index acb0f8c..7a4d95a 100644 --- a/frontend/src/routes/study/review-box/+page.svelte +++ b/frontend/src/routes/study/review-box/+page.svelte @@ -69,7 +69,8 @@ } function setTab(t) { - if (t === 'done') return; // 완료 탭은 백엔드 준비 전 비활성 + if (t === 'done' || t === tab) return; // 완료 탭은 백엔드 준비 전 비활성 + selected = {}; // 탭 전환 시 선택 초기화 — 탭별 독립 선택(선택 복습은 현재 탭 기준) tab = t; }