From e484f0c6ef2e987aa71454c5bf55364871106ea5 Mon Sep 17 00:00:00 2001 From: chchaeun Date: Thu, 22 Sep 2022 20:04:54 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EC=B1=8C=EB=A6=B0=EC=A7=80=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EC=97=90=EC=84=9C=20ACCEPTED=EB=A7=8C=20?= =?UTF-8?q?=EB=B3=B4=EC=97=AC=EC=A3=BC=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 --- components/challenges/challenge-list.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/challenges/challenge-list.tsx b/components/challenges/challenge-list.tsx index 9210b41..f8fdc19 100644 --- a/components/challenges/challenge-list.tsx +++ b/components/challenges/challenge-list.tsx @@ -10,18 +10,18 @@ function ChallengeList({ challenges }: Props) { return (
{challenges?.map((challenge) => ( -
+ <> {challenge.applicationStatus === "ACCEPTED" && ( -
+
-
+
{challenge.title} {challenge.chapter}κΈ° @@ -34,7 +34,7 @@ function ChallengeList({ challenges }: Props) {
)} -
+ ))}
);