Commented out minimumBookingNotice, needs fixing (#1297)
This commit is contained in:
parent
c359ebe85c
commit
8afcba23c8
1 changed files with 2 additions and 1 deletions
|
@ -24,9 +24,10 @@ const getMinuteOffset = (date: Dayjs, step: number) => {
|
|||
return Math.ceil(minuteOffset / step) * step;
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
const getSlots = ({ inviteeDate, frequency, minimumBookingNotice, workingHours }: GetSlots) => {
|
||||
// current date in invitee tz
|
||||
let startDate = dayjs(inviteeDate).add(minimumBookingNotice, "minute");
|
||||
let startDate = dayjs(inviteeDate); // .add(minimumBookingNotice, "minute");
|
||||
// checks if the start date is in the past
|
||||
if (startDate.isBefore(dayjs(), "day")) {
|
||||
return [];
|
||||
|
|
Loading…
Reference in a new issue