diff --git a/components/booking/BookingListItem.tsx b/components/booking/BookingListItem.tsx
index 63df6f8a..209371bf 100644
--- a/components/booking/BookingListItem.tsx
+++ b/components/booking/BookingListItem.tsx
@@ -74,13 +74,13 @@ function BookingListItem(booking: BookingItem) {
return (
- |
+ |
{startTime}
{dayjs(booking.startTime).format("HH:mm")} - {dayjs(booking.endTime).format("HH:mm")}
|
-
+ |
{!booking.confirmed && !booking.rejected && {t("unconfirmed")}}
{!!booking?.eventType?.price && !booking.paid && Pending payment}
@@ -91,7 +91,9 @@ function BookingListItem(booking: BookingItem) {
-
+
{booking.eventType?.team && {booking.eventType.team.name}: }
{booking.title}
{!!booking?.eventType?.price && !booking.paid && (
@@ -113,7 +115,7 @@ function BookingListItem(booking: BookingItem) {
)}
|
-
+ |
{isUpcoming && !isCancelled ? (
<>
{!booking.confirmed && !booking.rejected && }
|