diff --git a/project/src/services/SeasonalEventService.ts b/project/src/services/SeasonalEventService.ts index 56fbeb75..d219f978 100644 --- a/project/src/services/SeasonalEventService.ts +++ b/project/src/services/SeasonalEventService.ts @@ -285,7 +285,13 @@ export class SeasonalEventService { seasonRange.startMonth - 1, // Month value starts at 0 seasonRange.startDay, ); - const eventEndDate = new Date(currentDate.getFullYear(), seasonRange.endMonth - 1, seasonRange.endDay); + const eventEndDate = new Date( + currentDate.getFullYear(), + seasonRange.endMonth - 1, + seasonRange.endDay, + 23, + 59, + ); // Does todays date fit inside the above range if (currentDate >= eventStartDate && currentDate <= eventEndDate) {