diff --git a/lib/slots.ts b/lib/slots.ts index b782f287..1238aa55 100644 --- a/lib/slots.ts +++ b/lib/slots.ts @@ -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 [];