From bbde1ee7ae4e283246192b64e359bc143d4de395 Mon Sep 17 00:00:00 2001 From: jusohn Date: Sun, 26 Nov 2023 15:09:27 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20FIX:=20=EA=B3=B5=EC=9C=A0=EC=82=AC?= =?UTF-8?q?=EB=AC=BC=ED=95=A8=20=EC=9D=B8=EC=9B=90=EC=9D=B4=20=EB=8B=A4=20?= =?UTF-8?q?=EC=B0=A8=EC=A7=80=20=EC=95=8A=EC=95=84=EB=8F=84=20=EC=82=AC?= =?UTF-8?q?=EB=AC=BC=ED=95=A8=20=EC=9D=B4=EB=A6=84=EC=9D=84=20=ED=91=9C?= =?UTF-8?q?=EC=8B=9C=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95=20#14?= =?UTF-8?q?28?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/CabinetList/CabinetListItem/CabinetListItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/CabinetList/CabinetListItem/CabinetListItem.tsx b/frontend/src/components/CabinetList/CabinetListItem/CabinetListItem.tsx index c6f736d92..44cdebbd8 100644 --- a/frontend/src/components/CabinetList/CabinetListItem/CabinetListItem.tsx +++ b/frontend/src/components/CabinetList/CabinetListItem/CabinetListItem.tsx @@ -63,7 +63,7 @@ const CabinetListItem = (props: CabinetPreviewInfo): JSX.Element => { if (props.lentType === "PRIVATE") cabinetLabelText = props.name; else if (props.lentType === "SHARE") { cabinetLabelText = - props.userCount === props.maxUser && !!props.title + !!props.title ? props.title : `${props.userCount} / ${props.maxUser}`; } else if (props.lentType === "CLUB")