fix: lint errors introduced in PR#10225 (#10230)
parent
3d7c32c0d8
commit
bb4d587359
|
@ -37,7 +37,6 @@ const MeetingTimeInTimezones = ({
|
||||||
if (!userTimezone || !attendees.length) return null;
|
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
|
// 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) => {
|
const attendeeTimezones = attendees.map((attendee) => {
|
||||||
return isSupportedTimeZone(attendee.timeZone) ? attendee.timeZone : userTimezone;
|
return isSupportedTimeZone(attendee.timeZone) ? attendee.timeZone : userTimezone;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue