Show proper default destination calendar (#7644)

* Make destination calendar immutable

* Add comment

---------

Co-authored-by: Omar López <zomars@me.com>
This commit is contained in:
Joe Au-Yeung
2023-03-31 23:12:28 +02:00
committed by GitHub
co-authored by Omar López
parent 04fb7e07b4
commit 8f8ed4d80d
+3 -1
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 {