Skip to content

Commit

Permalink
[fix] 마이 체크인에서 회의실 예약 시간대가 20시를 초과하는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jjongs2 committed Sep 6, 2023
1 parent 5717bdd commit 244ca84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/status/Status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function Status({
);
details = `${location} ${title}`;
if (isMobile) {
details = details.replace('Cluster', 'C ');
details = details.replace('Cluster', 'C');
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion utils/getDurations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function getDurations(timeMask: number, date?: string): string[][
}
}
if (startTime !== null) {
durations.push([startTime, dayjs(date).hour(20).format()]);
durations.push([startTime, dayjs(date).hour(20).minute(0).format()]);
}
return durations;
}

0 comments on commit 244ca84

Please sign in to comment.