Revert "Waypoint numbers should start at 0 on map. (#524)" (#525)

This commit is contained in:
MrPozor 2025-06-10 21:28:14 +02:00 committed by GitHub
parent 48040d7306
commit fe8efbe905
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,7 +81,7 @@ const WaypointMarkers = (props: FlightPlanProps) => {
markers.push(
<WaypointMarker
key={idx}
number={idx-1}
number={idx}
waypoint={p}
flight={props.flight}
/>