From ee77f38cdb324cbcf12518490df77fc9e6b89282 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 22:52:02 +0000 Subject: Improve gallery scroll indicators and format code Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com> --- src/frontend/app/components/StopAlert.tsx | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (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 d969108..f1356e6 100644 --- a/src/frontend/app/components/StopAlert.tsx +++ b/src/frontend/app/components/StopAlert.tsx @@ -8,7 +8,10 @@ interface StopAlertProps { compact?: boolean; } -export const StopAlert: React.FC = ({ stop, compact = false }) => { +export const StopAlert: React.FC = ({ + stop, + compact = false, +}) => { // Don't render anything if there's no alert content const hasContent = stop.title || stop.message; if (!hasContent) { @@ -28,11 +31,30 @@ export const StopAlert: React.FC = ({ stop, compact = false }) = }, [stop.alert]); return ( +<<<<<<< HEAD
{alertIcon}
{stop.title &&
{stop.title}
} {stop.message &&
{stop.message}
} +======= +
+
+ {isError ? : } +
+
+ {stop.title &&
{stop.title}
} + {stop.message && ( +
{stop.message}
+ )} + {stop.alternateCodes && stop.alternateCodes.length > 0 && ( +
+ Alternative stops: {stop.alternateCodes.join(", ")} +
+ )} +>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
); -- cgit v1.3