fix: exclude attendee reponses from calendar (#24739)

This commit is contained in:
Anik Dhabal Babu
2025-10-30 07:06:42 +00:00
committed by GitHub
parent 257acc3f71
commit a934cec51a
@@ -517,5 +517,10 @@ const processEvent = (calEvent: CalendarEvent): CalendarServiceEvent => {
calendarEvent.attendees = [];
}
if (calEvent.seatsPerTimeSlot){
calendarEvent.responses = null;
calendarEvent.userFieldsResponses = null;
}
return calendarEvent;
};