From 60188bc66e2f06de4f9368d846fcade5bd10ca2f Mon Sep 17 00:00:00 2001 From: Eesh Midha Date: Mon, 9 Feb 2026 00:52:50 +0530 Subject: [PATCH] fix(booking): make provider label and location link visible on mobile (#27463) * fix(booking): make provider label and location link visible on mobile * correct order * remove comments --------- Co-authored-by: Sahitya Chandra Co-authored-by: Dhairyashil --- .../components/booking/BookingListItem.tsx | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/apps/web/components/booking/BookingListItem.tsx b/apps/web/components/booking/BookingListItem.tsx index 39a90dfa13..49fa0f03c0 100644 --- a/apps/web/components/booking/BookingListItem.tsx +++ b/apps/web/components/booking/BookingListItem.tsx @@ -442,6 +442,36 @@ function BookingListItem(booking: BookingItemProps) { eventTypeHosts={booking.eventType?.hosts} /> )} + {!isPending && ( +
+ {(provider?.label || + (typeof locationToDisplay === "string" && locationToDisplay?.startsWith("https://"))) && + locationToDisplay.startsWith("http") && ( + e.stopPropagation()} + target="_blank" + title={locationToDisplay} + rel="noreferrer" + className="text-sm leading-6 text-blue-600 hover:underline dark:text-blue-400"> +
+ {provider?.iconUrl && ( + {`${provider?.label} + )} + {provider?.label + ? t("join_event_location", { eventLocationType: provider?.label }) + : t("join_meeting")} +
+
+ )} +
+ )} {isCancelled && booking.rescheduled && (