Skip to content

Commit

Permalink
[FE] HOTFIX: 공유사물함 대기중 연장권이 사용되는 버그 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
jiminChoi committed Oct 28, 2024
1 parent 572b2f7 commit 37fa31a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ const CabinetInfoArea: React.FC<{
closeModal,
isSwappable,
}) => {
const isExtensionVisible = isMine && selectedCabinetInfo;
// selectedCabinetInfo.status !== "IN_SESSION";
const isExtensionVisible = isMine && selectedCabinetInfo && selectedCabinetInfo.status !== "IN_SESSION";
const isHoverBoxVisible =
selectedCabinetInfo &&
selectedCabinetInfo.lentsLength <= 1 &&
Expand Down

0 comments on commit 37fa31a

Please sign in to comment.