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.
This commit is contained in:
Rory Hughes 2021-12-06 13:24:32 +00:00 committed by GitHub
parent c85f0650fe
commit dc13c95644
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,8 +166,7 @@ export const GoogleCalendarApiAdapter = (credential: Credential): CalendarApiAda
}, },
attendees: event.attendees, attendees: event.attendees,
reminders: { reminders: {
useDefault: false, useDefault: true,
overrides: [{ method: "email", minutes: 10 }],
}, },
}; };