diff --git a/src/main/java/kr/co/studyhubinu/studyhubserver/apply/repository/ApplyRepositoryImpl.java b/src/main/java/kr/co/studyhubinu/studyhubserver/apply/repository/ApplyRepositoryImpl.java index 4d39bce1..b05550cb 100644 --- a/src/main/java/kr/co/studyhubinu/studyhubserver/apply/repository/ApplyRepositoryImpl.java +++ b/src/main/java/kr/co/studyhubinu/studyhubserver/apply/repository/ApplyRepositoryImpl.java @@ -82,7 +82,7 @@ public List findApplyByUserId(Long userId, Pageable pageable) .from(applyEntity) .innerJoin(studyEntity).on(applyEntity.studyId.eq(studyEntity.id)) .innerJoin(studyPostEntity).on(studyPostEntity.studyId.eq(studyEntity.id)) - .where(applyEntity.userId.eq(userId)) + .where(applyEntity.userId.eq(userId), applyEntity.inspection.in(Inspection.STANDBY, Inspection.REJECT)) .orderBy(applyEntity.createdDate.desc()) .offset(pageable.getOffset()) .limit(pageable.getPageSize() + 1)