From bb4d587359cccb27f3819ae0e5f3b425034d4f58 Mon Sep 17 00:00:00 2001 From: Syed Ali Shahbaz <52925846+alishaz-polymath@users.noreply.github.com> Date: Tue, 18 Jul 2023 21:28:32 +0530 Subject: [PATCH] fix: lint errors introduced in PR#10225 (#10230) --- packages/ui/components/popover/MeetingTimeInTimezones.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; });