Skip to content

Commit

Permalink
[FE] FIX : 공유 사물함 세션 시간 1.5초 딜레이 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
seong-hui committed Nov 25, 2023
1 parent c9a41dc commit e9a3d6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const CountTimeContainer = ({ isMine }: { isMine: boolean }) => {
const currentTime = new Date().getTime();
const targetTime = targetDate.getTime();
if (targetTime <= currentTime) return 0;
return targetTime - currentTime;
return targetTime - currentTime + 1500;
};

const [targetCabinetInfo, setTargetCabinetInfo] = useRecoilState(
Expand Down

0 comments on commit e9a3d6b

Please sign in to comment.