Skip to content

Commit

Permalink
fixes google calendar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CarinaWolli committed Oct 25, 2022
1 parent 5f1d203 commit 99a2dc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app-store/googlecalendar/lib/CalendarService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default class GoogleCalendarService implements Calendar {
},
// eslint-disable-next-line
...calEventRaw.attendees.map(({ id, ...rest }) => ({
rest,
...rest,
responseStatus: "accepted",
})),
],
Expand Down Expand Up @@ -179,7 +179,7 @@ export default class GoogleCalendarService implements Calendar {
},
// eslint-disable-next-line
...event.attendees.map(({ id, ...rest }) => ({
rest,
...rest,
responseStatus: "accepted",
})),
],
Expand Down

0 comments on commit 99a2dc0

Please sign in to comment.