diff options
Diffstat (limited to 'src/frontend/app/components/map/StopSummarySheet.tsx')
| -rw-r--r-- | src/frontend/app/components/map/StopSummarySheet.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/app/components/map/StopSummarySheet.tsx b/src/frontend/app/components/map/StopSummarySheet.tsx index 7b4dd7b..be2df67 100644 --- a/src/frontend/app/components/map/StopSummarySheet.tsx +++ b/src/frontend/app/components/map/StopSummarySheet.tsx @@ -6,7 +6,7 @@ import { Link } from "react-router"; import { ArrivalList } from "~/components/arrivals/ArrivalList"; import { useStopArrivals } from "../../hooks/useArrivals"; import { ErrorDisplay } from "../ErrorDisplay"; -import LineIcon from "../LineIcon"; +import RouteIcon from "../RouteIcon"; import "./StopSummarySheet.css"; import { StopSummarySheetSkeleton } from "./StopSummarySheetSkeleton"; @@ -53,7 +53,7 @@ export const StopSummarySheet: React.FC<StopSheetProps> = ({ <div className={`flex flex-wrap flex-row gap-2`}> {data?.routes.map((lineObj) => ( - <LineIcon + <RouteIcon key={lineObj.shortName} line={lineObj.shortName} mode="pill" |
