diff --git a/apps/web/components/booking/BookingListItem.tsx b/apps/web/components/booking/BookingListItem.tsx index 04b86a9132..8e22549663 100644 --- a/apps/web/components/booking/BookingListItem.tsx +++ b/apps/web/components/booking/BookingListItem.tsx @@ -258,7 +258,12 @@ function BookingListItem(booking: BookingItemProps) { }; const title = booking.title; - const showRecordingsButtons = booking.isRecorded && isPast && isConfirmed; + // To be used after we run query on legacy bookings + // const showRecordingsButtons = booking.isRecorded && isPast && isConfirmed; + + const showRecordingsButtons = + (booking.location === "integrations:daily" || booking?.location?.trim() === "") && isPast && isConfirmed; + return ( <>