From cc309c752bd239c7d9ff6e566f11a4ab5c877458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=84=9D=EC=B0=AC=20=EC=9C=A4?= <ysc0731@ajou.ac.kr> Date: Tue, 10 Dec 2024 02:21:31 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20label=20=EB=A0=8C=EB=8D=94=EB=A7=81=20?= =?UTF-8?q?=EC=A1=B0=EA=B1=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Card.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Card.jsx b/src/components/Card.jsx index 508dc9b..6a0e284 100644 --- a/src/components/Card.jsx +++ b/src/components/Card.jsx @@ -80,11 +80,11 @@ export default function Card({ 참여중 </Label> )} - {isScheduleConflict && ( + {!isParticipant && isScheduleConflict ? ( <Label className="text-warning" size="sm" theme="graysolid"> - 시간표 충돌 + 시간충돌 </Label> - )} + ) : null} </div> {type === "OPEN" ? ( -- GitLab