diff --git a/frontend/src/businessData.tsx b/frontend/src/businessData.tsx index 9699fb4..93e4a3b 100644 --- a/frontend/src/businessData.tsx +++ b/frontend/src/businessData.tsx @@ -164,6 +164,9 @@ ${linePassagesDestination.length} here... refresh all them.`); for (const stop of stops) { byIdStops[stop.id] = stop; setStore('stops', stop.id, stop); + for (const innerStop of stop.stops) { + setStore('stops', innerStop.id, innerStop); + } } return byIdStops; }