diff options
Diffstat (limited to 'src/frontend/app/routes')
| -rw-r--r-- | src/frontend/app/routes/home.tsx | 2 | ||||
| -rw-r--r-- | src/frontend/app/routes/stops-$id.tsx | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/frontend/app/routes/home.tsx b/src/frontend/app/routes/home.tsx index e71c788..0a13fe6 100644 --- a/src/frontend/app/routes/home.tsx +++ b/src/frontend/app/routes/home.tsx @@ -240,8 +240,6 @@ export default function StopList() { </ul> </div> )} - - {/*<ServiceAlerts />*/} </> )} </div> 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*/}</> |
