Merge pull request #356 from Malte-D/bugfix/wrong-day-selected

fix for wrong day selected
pull/359/head
Bailey Pumfleet 2021-07-12 10:38:14 +01:00 committed by GitHub
commit 760606875b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,7 @@ const getSlots = ({
)
.reduce((slots, boundary: Boundary) => [...slots, ...getSlotsBetweenBoundary(frequency, boundary)], [])
.map((slot) =>
slot.month(inviteeDate.month()).date(inviteeDate.date()).utcOffset(inviteeDate.utcOffset())
slot.utcOffset(inviteeDate.utcOffset()).month(inviteeDate.month()).date(inviteeDate.date())
);
};

View File

@ -25,6 +25,7 @@ export default function Type(props): Type {
const telemetry = useTelemetry();
useEffect(() => {
handleToggle24hClock(localStorage.getItem("timeOption.is24hClock") === "true");
telemetry.withJitsu((jitsu) => jitsu.track(telemetryEventTypes.pageView, collectPageParameters()));
}, [telemetry]);