We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b003f41 commit ea572ffCopy full SHA for ea572ff
packages/web/src/ducks/events/sagas/saga.util.ts
@@ -101,7 +101,7 @@ export const EventDateUtils = {
101
// For all-day events with exclusive end dates (e.g., Mon event: start="2025-09-08", end="2025-09-09")
102
// Check if the event overlaps with the requested date range
103
const eventStart = dayjs(event.startDate);
104
- const eventEnd = dayjs(event.endDate); // This is exclusive, so actual event ends the day before
+ const eventEnd = dayjs(event.endDate); // This is exclusive, so the event ends at the very start of the end date
105
const rangeStart = dayjs(startDate);
106
const rangeEnd = dayjs(endDate);
107
0 commit comments