diff --git a/src/components/group-study/pages/premium-study-list-page.tsx b/src/components/group-study/pages/premium-study-list-page.tsx
index e3950ef46..54672ce5c 100644
--- a/src/components/group-study/pages/premium-study-list-page.tsx
+++ b/src/components/group-study/pages/premium-study-list-page.tsx
@@ -90,7 +90,7 @@ export default function PremiumStudyListPage() {
{/* 내가 참여중인 스터디 섹션 */}
-
+
{
if (!myStudiesData?.content) return new Set();
const studyType = CLASSIFICATION_TO_STUDY_TYPE[classification];
const filtered = myStudiesData.content.filter(
- (study) =>
- (study.status === 'IN_PROGRESS' || study.status === 'RECRUITING') &&
- study.type === studyType,
+ (study) => study.type === studyType,
);
return new Set(filtered.map((study) => study.studyId));