-
-
-
-
-
-
{selectedDay?.longLabel ?? selectedDate}
+ {selectedCourt && (
+ <>
+
+
+
+
+
+
+
+ {selectedDay?.longLabel ?? selectedDate}
+
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+ >
+ )}
@@ -711,16 +715,24 @@ function PublicBookingMobile(props: BookingShellProps) {
options={props.sports.map((sport) => ({ value: sport.id, label: sport.name }))}
/>
)}
-
({
- value: court.courtId,
- label: court.courtName,
- }))}
- />
+ {props.courts.length > 0 ? (
+ ({
+ value: court.courtId,
+ label: court.courtName,
+ }))}
+ />
+ ) : (
+ !props.isLoading && (
+
+ No hay canchas disponibles para esta fecha.
+
+ )
+ )}