File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -121,19 +121,19 @@ export async function getEvents({
121121 start : event . startDateLocalized ,
122122 end : event . endDateLocalized ,
123123 description : sanitizedDescription ,
124- } ) ;
125- const calendarLinkOutlook = outlook ( {
124+ } ) ;
125+ const calendarLinkOutlook = outlook ( {
126126 title : event . title ,
127127 start : event . startDateLocalized ,
128128 end : event . endDateLocalized ,
129129 description : sanitizedDescription ,
130- } ) ;
131- const calendarLinkIcs = ics ( {
130+ } ) ;
131+ const calendarLinkIcs = ics ( {
132132 title : event . title ,
133133 start : event . startDateLocalized ,
134134 end : event . endDateLocalized ,
135135 description : sanitizedDescription ,
136- } ) ;
136+ } ) ;
137137 return {
138138 ...event ,
139139 eventCalendarDescription : sanitizedDescription ,
Original file line number Diff line number Diff line change @@ -24,19 +24,19 @@ export function createEventsData({
2424 start : startDate . toUTC ( ) . toString ( ) ,
2525 end : startDate . toUTC ( ) . plus ( { hours : 1 } ) . toString ( ) ,
2626 description : faker . lorem . paragraph ( ) ,
27- } ) ;
28- const calendarLinkOutlook = outlook ( {
27+ } ) ;
28+ const calendarLinkOutlook = outlook ( {
2929 title : faker . lorem . sentence ( 7 ) ,
3030 start : startDate . toUTC ( ) . toString ( ) ,
3131 end : startDate . toUTC ( ) . plus ( { hours : 1 } ) . toString ( ) ,
3232 description : faker . lorem . paragraph ( ) ,
33- } ) ;
34- const calendarLinkIcs = ics ( {
33+ } ) ;
34+ const calendarLinkIcs = ics ( {
3535 title : faker . lorem . sentence ( 7 ) ,
3636 start : startDate . toUTC ( ) . toString ( ) ,
3737 end : startDate . toUTC ( ) . plus ( { hours : 1 } ) . toString ( ) ,
3838 description : faker . lorem . paragraph ( ) ,
39- } ) ;
39+ } ) ;
4040
4141 return {
4242 id : faker . string . uuid ( ) ,
You can’t perform that action at this time.
0 commit comments