fix: lint errors introduced in PR#10225 (#10230)

This commit is contained in:
Syed Ali Shahbaz
2023-07-18 15:58:32 +00:00
committed by GitHub
parent 3d7c32c0d8
commit bb4d587359
@@ -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;
});