We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 877fdbf commit 3ab6767Copy full SHA for 3ab6767
1 file changed
apps/web/components/booking/BookingListItem.tsx
@@ -245,7 +245,9 @@ function BookingListItem(booking: BookingItemProps) {
245
isDisabledCancelling,
246
isDisabledRescheduling,
247
isCalVideoLocation:
248
- !booking.location || booking.location === "integrations:daily" || booking?.location?.trim() === "",
+ !booking.location ||
249
+ booking.location === "integrations:daily" ||
250
+ (typeof booking.location === "string" && booking.location.trim() === ""),
251
showPendingPayment: paymentAppData.enabled && booking.payment.length && !booking.paid,
252
cardCharged,
253
attendeeList,
0 commit comments