diff --git a/apps/web/components/booking/BookingListItem.tsx b/apps/web/components/booking/BookingListItem.tsx index e4e3b66869..1b8532bcda 100644 --- a/apps/web/components/booking/BookingListItem.tsx +++ b/apps/web/components/booking/BookingListItem.tsx @@ -306,11 +306,6 @@ function BookingListItem(booking: BookingItemProps) {
- {isPending && ( - - {t("unconfirmed")} - - )} {!!booking?.eventType?.price && !booking.paid && ( {t("pending_payment")} @@ -335,7 +330,11 @@ function BookingListItem(booking: BookingItemProps) { {!!booking?.eventType?.price && !booking.paid && ( Pending payment )} - {isPending && {t("unconfirmed")}} + {isPending && ( + + {t("unconfirmed")} + + )}
{booking.description && (