From 34bb069b4a85c5837eb1d611a71444691941bc4f Mon Sep 17 00:00:00 2001 From: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Date: Fri, 20 Oct 2023 21:13:45 +0530 Subject: [PATCH] revert: feat: Shows link location (#12024) --- .../components/booking/BookingListItem.tsx | 25 ------------------- apps/web/public/static/locales/en/common.json | 2 -- 2 files changed, 27 deletions(-) diff --git a/apps/web/components/booking/BookingListItem.tsx b/apps/web/components/booking/BookingListItem.tsx index 3be8b6f900..e3f4fa7b22 100644 --- a/apps/web/components/booking/BookingListItem.tsx +++ b/apps/web/components/booking/BookingListItem.tsx @@ -88,10 +88,6 @@ function BookingListItem(booking: BookingItemProps) { const isRecurring = booking.recurringEventId !== null; const isTabRecurring = booking.listingStatus === "recurring"; const isTabUnconfirmed = booking.listingStatus === "unconfirmed"; - const eventLocationType = getEventLocationType(booking.location); - const meetingLink = booking.references[0]?.meetingUrl - ? booking.references[0]?.meetingUrl - : booking.location; const paymentAppData = getPaymentAppData(booking.eventType); @@ -357,27 +353,6 @@ function BookingListItem(booking: BookingItemProps) { attendees={booking.attendees} /> - {!isPending && (eventLocationType || booking.location?.startsWith("https://")) && ( - -
- {eventLocationType ? ( - <> - {`${eventLocationType.label} - {t("join_event_location", { eventLocationType: eventLocationType.label })} - - ) : ( - t("join_meeting") - )} -
- - )} - {isPending && ( {t("unconfirmed")} diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index 2018b00cf4..7a1b81c44c 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -2093,7 +2093,5 @@ "overlay_my_calendar":"Overlay my calendar", "overlay_my_calendar_toc":"By connecting to your calendar, you accept our privacy policy and terms of use. You may revoke access at any time.", "view_overlay_calendar_events":"View your calendar events to prevent clashed booking.", - "join_event_location": "Join {{eventLocationType}}", - "join_meeting": "Join Meeting", "ADD_NEW_STRINGS_ABOVE_THIS_LINE_TO_PREVENT_MERGE_CONFLICTS": "↑↑↑↑↑↑↑↑↑↑↑↑↑ Add your new strings above here ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑" }