diff --git a/components/WeekCalendar.tsx b/components/WeekCalendar.tsx index e78f984..7b9495b 100644 --- a/components/WeekCalendar.tsx +++ b/components/WeekCalendar.tsx @@ -224,11 +224,10 @@ function ParkRow({ -
+
{park.name} @@ -249,14 +248,14 @@ function ParkRow({
{park.location.city}, {park.location.state}
+ {rideCounts?.[park.id] !== undefined && ( +
+ {rideCounts[park.id]} {coastersOnly + ? (rideCounts[park.id] === 1 ? "coaster" : "coasters") + : (rideCounts[park.id] === 1 ? "ride" : "rides")} operating +
+ )}
- {rideCounts?.[park.id] !== undefined && ( -
- {rideCounts[park.id]} {coastersOnly - ? (rideCounts[park.id] === 1 ? "coaster" : "coasters") - : (rideCounts[park.id] === 1 ? "ride" : "rides")} operating -
- )}