Skip to content

Commit

Permalink
Hotfix: 매개변수 타입 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JWJung-99 committed Jan 17, 2025
1 parent 3c9dafa commit 42d51fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Reservation/ReservationDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const ReservationDetail = () => {
if (isDeadlinePassed) {
return '규정에 따라 예약취소가 불가합니다. 사진관에 문의해주세요.';
} else {
const formattedDate = changeformatDateForUi({ date: sevenDaysBefore, time: new Set() });
const formattedDate = changeformatDateForUi({ date: sevenDaysBefore, time: [] });
return `${formattedDate} 23:59까지 예약취소가 가능합니다.`;
}
};
Expand Down

0 comments on commit 42d51fc

Please sign in to comment.