From ed6d09f3bc28d0e659b5506d7518df00e37c4240 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 5 Apr 2026 14:12:15 -0400 Subject: [PATCH] Revert "fix: move ride count below park name to prevent overflow on small displays" This reverts commit e2498af481742f97f441d890afb3a0ec291e9d5d. --- components/WeekCalendar.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/components/WeekCalendar.tsx b/components/WeekCalendar.tsx index 7b9495b..e78f984 100644 --- a/components/WeekCalendar.tsx +++ b/components/WeekCalendar.tsx @@ -224,10 +224,11 @@ function ParkRow({ -
+
{park.name} @@ -248,14 +249,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 +
+ )}