From dc13c956443f6ee99264d9a3b6969ca88419b9de Mon Sep 17 00:00:00 2001 From: Rory Hughes <544628+rorhug@users.noreply.github.com> Date: Mon, 6 Dec 2021 13:24:32 +0000 Subject: [PATCH] Favour the user's default calendar notification settings without overriding (#1259) If people want emails for every event on their calendar, they can set that up. --- lib/integrations/GoogleCalendar/GoogleCalendarApiAdapter.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/integrations/GoogleCalendar/GoogleCalendarApiAdapter.ts b/lib/integrations/GoogleCalendar/GoogleCalendarApiAdapter.ts index 8c06edc5..047e72f6 100644 --- a/lib/integrations/GoogleCalendar/GoogleCalendarApiAdapter.ts +++ b/lib/integrations/GoogleCalendar/GoogleCalendarApiAdapter.ts @@ -166,8 +166,7 @@ export const GoogleCalendarApiAdapter = (credential: Credential): CalendarApiAda }, attendees: event.attendees, reminders: { - useDefault: false, - overrides: [{ method: "email", minutes: 10 }], + useDefault: true, }, };