diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2026-04-04 15:44:41 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2026-04-04 15:44:41 +0200 |
| commit | 97908d274ee12eb2301fadd5fc445d0f79479a56 (patch) | |
| tree | 04eee0ad547cc68047011dea82549dcad4a0d0d8 /src/frontend/app/routes/stops-$id.tsx | |
| parent | 1b4f4a674ac533c0b51260ba35ab91dd2cf9486d (diff) | |
Enhance arrival and transit functionality with new vehicle operation logic and transit kind classification
Diffstat (limited to 'src/frontend/app/routes/stops-$id.tsx')
| -rw-r--r-- | src/frontend/app/routes/stops-$id.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/frontend/app/routes/stops-$id.tsx b/src/frontend/app/routes/stops-$id.tsx index b3d7e86..2734895 100644 --- a/src/frontend/app/routes/stops-$id.tsx +++ b/src/frontend/app/routes/stops-$id.tsx @@ -10,6 +10,7 @@ import { type StopArrivalsResponse, } from "~/api/schema"; import { ArrivalList } from "~/components/arrivals/ArrivalList"; +import ServiceAlerts from "~/components/ServiceAlerts"; import { ErrorDisplay } from "~/components/ErrorDisplay"; import { PullToRefresh } from "~/components/PullToRefresh"; import RouteIcon from "~/components/RouteIcon"; @@ -229,6 +230,8 @@ export default function Estimates() { </div> )} + <ServiceAlerts selectorFilter={[`stop#${stopId}`]} /> + <div className="estimates-list-container flex-1"> {dataLoading ? ( <>{/*TODO: New loading skeleton*/}</> |
