Update page.tsx

This commit is contained in:
Abubeker Yasin
2026-07-14 21:25:27 +03:00
parent 9d93e5c300
commit 43aecf8376

View File

@@ -1927,6 +1927,7 @@ export default function SeatsPage() {
? allCoachSeats?.find((s: any) => s.id === assignedSeatId)
: null;
const seatLabel = assignedSeat ? buildSeatLabel(assignedSeat) : "";
const seatFare = assignedSeat ? getSeatFare(assignedSeat) : null;
const isActive = i === activePassengerIndex;
const isClickable = i <= maxSelectableIndex;
return (