diff --git a/components/booking/Slots.tsx b/components/booking/Slots.tsx
index 1b4a8bfd..29ed9e72 100644
--- a/components/booking/Slots.tsx
+++ b/components/booking/Slots.tsx
@@ -1,10 +1,9 @@
-import { useEffect, useState } from "react";
+import { useState, useEffect } from "react";
import { useRouter } from "next/router";
import getSlots from "../../lib/slots";
import dayjs, { Dayjs } from "dayjs";
import isBetween from "dayjs/plugin/isBetween";
import utc from "dayjs/plugin/utc";
-
dayjs.extend(isBetween);
dayjs.extend(utc);
@@ -12,9 +11,11 @@ type Props = {
eventLength: number;
minimumBookingNotice?: number;
date: Dayjs;
+ workingHours: [];
+ organizerTimeZone: string;
};
-const Slots = ({ eventLength, minimumBookingNotice, date, workingHours, organizerUtcOffset }: Props) => {
+const Slots = ({ eventLength, minimumBookingNotice, date, workingHours, organizerTimeZone }: Props) => {
minimumBookingNotice = minimumBookingNotice || 0;
const router = useRouter();
@@ -48,7 +49,7 @@ const Slots = ({ eventLength, minimumBookingNotice, date, workingHours, organize
inviteeDate: date,
workingHours,
minimumBookingNotice,
- organizerUtcOffset,
+ organizerTimeZone,
});
const timesLengthBeforeConflicts: number = times.length;
diff --git a/lib/slots.ts b/lib/slots.ts
index 3313fbce..862e8b14 100644
--- a/lib/slots.ts
+++ b/lib/slots.ts
@@ -81,9 +81,12 @@ const organizerBoundaries = (
}
}
} else {
- boundaries.push({ lowerBound, upperBound });
+ if (item.days.includes(startDay)) {
+ boundaries.push({ lowerBound, upperBound });
+ }
}
});
+
return boundaries;
};
@@ -116,7 +119,7 @@ const getSlots = ({
workingHours,
organizerTimeZone,
}: GetSlots): Dayjs[] => {
- const startTime = dayjs.utc().isSame(dayjs(inviteeDate), "day")
+ const startTime = dayjs().utcOffset(inviteeDate.utcOffset()).isSame(inviteeDate, "day")
? inviteeDate.hour() * 60 + inviteeDate.minute() + (minimumBookingNotice || 0)
: 0;
diff --git a/pages/[user]/[type].tsx b/pages/[user]/[type].tsx
index 82ba5d2e..e81812a1 100644
--- a/pages/[user]/[type].tsx
+++ b/pages/[user]/[type].tsx
@@ -134,6 +134,7 @@ export default function Type(props): Type {