Skip to content

Commit

Permalink
fix: 날짜선택 창 바텀버튼 비활성화 된 상태에서도 넘어가는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
YesHyeon committed Aug 6, 2023
1 parent e13c696 commit 61faa8d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pages/roomCalendar/RoomCalendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ const RoomCalendar = () => {
const naviate = useNavigate();

const handleNextClick = useCallback(async () => {
if (dates.length == 0) {
return;
}

if (isCheckedBox) {
setStartTime('09:00');
setEndTime('09:00');
Expand Down

0 comments on commit 61faa8d

Please sign in to comment.