Fixed mission form

This commit is contained in:
PxlLoewe
2025-06-01 15:02:38 -07:00
parent 9826f970d8
commit fdb62aa4d2
5 changed files with 29 additions and 27 deletions

View File

@@ -121,7 +121,7 @@ export const ContextMenu = () => {
const nodeWay: [number, number][] = [];
closestToContext.nodes.map((node: { lat: number; lon: number }) =>
closestToContext.nodes?.foreach((node: { lat: number; lon: number }) =>
nodeWay.push([node.lat, node.lon]),
);