diff --git a/apps/planner/app/components/PlannerMap.tsx b/apps/planner/app/components/PlannerMap.tsx index 4c7aa0a..6f05030 100644 --- a/apps/planner/app/components/PlannerMap.tsx +++ b/apps/planner/app/components/PlannerMap.tsx @@ -477,8 +477,8 @@ export function PlannerMap({ yjs, onRouteRequest, highlightPosition, highlighted } } } - // If within ~200m of the route, insert after the segment's waypoint - if (bestDist < 0.002 && bestSegment >= 0) { + // If within ~1km of the route, insert after the segment's waypoint + if (bestDist < 0.01 && bestSegment >= 0) { insertIndex = bestSegment + 1; } }