From 37d8eedd641bb04c086797010292bcb25240d56d Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Thu, 6 Nov 2025 23:36:52 +0100 Subject: Refactor styles and add alert color variables; implement scroll management for timetable --- src/frontend/app/components/StopAlert.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/frontend/app/components/StopAlert.tsx') diff --git a/src/frontend/app/components/StopAlert.tsx b/src/frontend/app/components/StopAlert.tsx index 69ecc22..a96f93e 100644 --- a/src/frontend/app/components/StopAlert.tsx +++ b/src/frontend/app/components/StopAlert.tsx @@ -19,17 +19,10 @@ export const StopAlert: React.FC = ({ stop, compact = false }) = return (
-
- {isError ? : } -
+ {isError ? : }
{stop.title &&
{stop.title}
} {stop.message &&
{stop.message}
} - {stop.alternateCodes && stop.alternateCodes.length > 0 && ( -
- Alternative stops: {stop.alternateCodes.join(", ")} -
- )}
); -- cgit v1.3