diff --git a/apps/web/components/booking/BookingListItem.tsx b/apps/web/components/booking/BookingListItem.tsx index 88848cc3023d80..01c0264e88e471 100644 --- a/apps/web/components/booking/BookingListItem.tsx +++ b/apps/web/components/booking/BookingListItem.tsx @@ -347,7 +347,9 @@ function BookingListItem(booking: BookingItemProps) { const title = booking.title; const isCalVideoLocation = - !booking.location || booking.location === "integrations:daily" || booking?.location?.trim() === ""; + !booking.location || + booking.location === "integrations:daily" || + (typeof booking.location === "string" && booking.location.trim() === ""); const showPendingPayment = paymentAppData.enabled && booking.payment.length && !booking.paid;