Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/components/card/mission-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,12 @@ function isCardClickable(
);
}

// 비리더: 진행중, 평가완료만 클릭 가능 (제출마감은 클릭 불가)
return status === 'IN_PROGRESS' || status === 'EVALUATION_COMPLETED';
// 비리더: 진행중, 제출마감, 평가완료 시 클릭 가능
return (
status === 'IN_PROGRESS' ||
status === 'ENDED' ||
status === 'EVALUATION_COMPLETED'
);
}

export default function MissionCard({
Expand Down
Loading