We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65b549 commit 7fff0b4Copy full SHA for 7fff0b4
pages/index.page.tsx
@@ -98,7 +98,11 @@ function printEventsForNextWeeks(icalData: { [x: string]: any }) {
98
99
// Complicated case - if an RRULE exists, handle multiple recurrences of the event
100
if (event.rrule) {
101
- const dates = event.rrule.between(today.toDate(), nextFourWeeksEnd.toDate(), true);
+ const dates = event.rrule.between(
102
+ today.toDate(),
103
+ nextFourWeeksEnd.toDate(),
104
+ true,
105
+ );
106
107
// Loop through the set of date entries
108
for (const date of dates) {
0 commit comments