Show proper default destination calendar (#7644)

* Make destination calendar immutable

* Add comment

---------

Co-authored-by: Omar López <zomars@me.com>
pull/8034/head
Joe Au-Yeung 2023-03-31 17:12:28 -04:00 committed by GitHub
parent 04fb7e07b4
commit 8f8ed4d80d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -77,9 +77,11 @@ export const getConnectedCalendars = async (
},
};
}
if (destinationCalendar) {
// HACK https://github.com/calcom/cal.com/pull/7644/files#r1131508414
if (destinationCalendar && !Object.isFrozen(destinationCalendar)) {
destinationCalendar.primaryEmail = primary.email;
destinationCalendar.integrationTitle = integration.title;
destinationCalendar = Object.freeze(destinationCalendar);
}
return {