File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ function printEventsForNextWeeks(icalData: { [x: string]: any }) {
110110
111111 // Check if the event falls within the next 12 weeks
112112 if ( startDate . isBetween ( today , nextFourWeeksEnd , undefined , '[]' ) ) {
113- const utcDate = startDate . subtract ( 5.5 , 'hours' ) ; // Already in UTC
113+ const utcDate = startDate . subtract ( 5.5 , 'hours' ) ; // Already in UTC
114114
115115 const time = utcDate . format ( 'MMMM Do YYYY, h:mm a' ) ;
116116 const day = utcDate . format ( 'D' ) ;
@@ -127,7 +127,7 @@ function printEventsForNextWeeks(icalData: { [x: string]: any }) {
127127 } else {
128128 // Simple case - no recurrences
129129 if ( startDate . isBetween ( today , nextFourWeeksEnd , undefined , '[]' ) ) {
130- const utcDate = startDate . subtract ( 5.5 , 'hours' ) ; // Already in UTC
130+ const utcDate = startDate . subtract ( 5.5 , 'hours' ) ; // Already in UTC
131131
132132 const time = utcDate . format ( 'MMMM Do YYYY, h:mm a' ) ;
133133 const day = utcDate . format ( 'D' ) ;
You can’t perform that action at this time.
0 commit comments