From 44291be7b75d55da479c81652731fa33d213f51d Mon Sep 17 00:00:00 2001 From: Kartik Labhshetwar Date: Fri, 5 Dec 2025 09:30:03 +0530 Subject: [PATCH] fix: show rescheduled badge on mobile view in bookings list (#25542) Co-authored-by: Dhairyashil Shinde <93669429+dhairyashiil@users.noreply.github.com> --- apps/web/components/booking/BookingListItem.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/web/components/booking/BookingListItem.tsx b/apps/web/components/booking/BookingListItem.tsx index 9184d419a4..9ed190f43a 100644 --- a/apps/web/components/booking/BookingListItem.tsx +++ b/apps/web/components/booking/BookingListItem.tsx @@ -356,7 +356,7 @@ function BookingListItem(booking: BookingItemProps) { data-today={String(booking.isToday)} className="hover:bg-cal-muted group w-full">
-
+
{eventTypeColor && (
@@ -445,6 +445,13 @@ function BookingListItem(booking: BookingItemProps) { {t("pending_payment")} )} + {isRescheduled && ( + + + {t("rescheduled")} + + + )} {recurringDates !== undefined && (
-
+
{shouldShowPendingActions(actionContext) && } {shouldShowRecurringCancelAction(actionContext) && }