Skip to content

Commit

Permalink
Show lrtfeeder in nearby tab
Browse files Browse the repository at this point in the history
  • Loading branch information
chunlaw committed Nov 13, 2023
1 parent 11b62de commit a7c1c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/home/SwipeableList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ const getSelectedRoutes = ({
// keep only the nearest 5 stops
let routeIds = [];
Object.entries(routeList).forEach(([key, route]) => {
["kmb", "nwfb", "ctb", "nlb"].forEach((co) => {
["kmb", "lrtfeeder", "lightRail", "gmb", "ctb", "nlb"].forEach((co) => {
if (route.stops[co] && route.stops[co].includes(stopId)) {
routeIds.push(key + "/" + route.stops[co].indexOf(stopId));
}
Expand Down

0 comments on commit a7c1c09

Please sign in to comment.