diff --git a/packages/ui/components/popover/MeetingTimeInTimezones.tsx b/packages/ui/components/popover/MeetingTimeInTimezones.tsx index cac9cfc385..49d9a865f7 100644 --- a/packages/ui/components/popover/MeetingTimeInTimezones.tsx +++ b/packages/ui/components/popover/MeetingTimeInTimezones.tsx @@ -35,9 +35,8 @@ const MeetingTimeInTimezones = ({ endTime, }: MeetingTimeInTimezonesProps) => { if (!userTimezone || !attendees.length) return null; - + // If attendeeTimezone is unsupported, we fallback to host timezone. Unsupported Attendee timezone can be used due to bad API booking request in the past | backward-compatibility - const attendeeTimezones = attendees.map((attendee) => { return isSupportedTimeZone(attendee.timeZone) ? attendee.timeZone : userTimezone; });