From c108e0e16348a3ce5d2904e664d3f08237c9ab0a Mon Sep 17 00:00:00 2001 From: Jeong Ha Seung <88266129+HA-SEUNG-JEONG@users.noreply.github.com> Date: Wed, 18 Feb 2026 15:31:38 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EB=A6=AC=EB=8D=94=EA=B0=80=20?= =?UTF-8?q?=EC=95=84=EB=8B=8C=20=EC=B0=B8=EA=B0=80=EC=9E=90=EB=8F=84=20?= =?UTF-8?q?=EC=A2=85=EB=A3=8C=EB=90=9C=20=EC=8A=A4=ED=84=B0=EB=94=94=20?= =?UTF-8?q?=EB=82=B4=20=EB=AF=B8=EC=85=98=EC=97=90=20=EC=A0=91=EA=B7=BC=20?= =?UTF-8?q?=EA=B0=80=EB=8A=A5=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/card/mission-card.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/card/mission-card.tsx b/src/components/card/mission-card.tsx index 62968583..d3bdb1de 100644 --- a/src/components/card/mission-card.tsx +++ b/src/components/card/mission-card.tsx @@ -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({