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

This commit is contained in:
MrPozor 2025-06-09 22:58:15 +02:00 committed by GitHub
parent f3ed25b5b2
commit 48040d7306
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}
number={idx-1}
waypoint={p}
flight={props.flight}
/>