diff --git a/apps/edr-passenger-web/portal/src/app/packages/[id]/page.tsx b/apps/edr-passenger-web/portal/src/app/packages/[id]/page.tsx index aee655dd5..69558e49e 100644 --- a/apps/edr-passenger-web/portal/src/app/packages/[id]/page.tsx +++ b/apps/edr-passenger-web/portal/src/app/packages/[id]/page.tsx @@ -311,6 +311,7 @@ function PassengerCountModal({ const [adultCount, setAdultCount] = useState(1); const [childCount, setChildCount] = useState(0); const [departureStationId, setDepartureStationId] = useState(''); + const [showStationError, setShowStationError] = useState(false); const remaining = tier.availableSeats - tier.bookedSeats; const childFareMinor = Math.round(tier.priceMinor * PKG_CHILD_FARE_RATIO); const totalMinor = (adultCount * tier.priceMinor + childCount * childFareMinor) * priceMultiplier; @@ -378,8 +379,10 @@ function PassengerCountModal({