Skip to content

Commit

Permalink
[FE] FIX: 공유사물함 인원이 다 차지 않아도 사물함 이름을 표시하도록 수정 #1428
Browse files Browse the repository at this point in the history
  • Loading branch information
junyoung2015 committed Nov 26, 2023
1 parent 204ffb1 commit bbde1ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit bbde1ee

Please sign in to comment.