From 732390425f2b829acd965944ba9952ef8da3de89 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 5 Apr 2026 14:29:34 -0400 Subject: [PATCH] Revert "fix: stack ride count below city/state to prevent overflow on small displays" This reverts commit a1694668d9b89ee64c19f715691bac67b68e36b3. --- components/WeekCalendar.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/components/WeekCalendar.tsx b/components/WeekCalendar.tsx index 9a1fda4..8ee358b 100644 --- a/components/WeekCalendar.tsx +++ b/components/WeekCalendar.tsx @@ -229,8 +229,8 @@ function ParkRow({ gap: 10, }}>
-
- +
+ {park.name} {rideCounts?.[park.id] !== undefined && ( @@ -246,17 +246,17 @@ 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 +
+ )}