diff --git a/client/src/components/flightplan/FlightPlan.tsx b/client/src/components/flightplan/FlightPlan.tsx index ff20eb66..2110b46b 100644 --- a/client/src/components/flightplan/FlightPlan.tsx +++ b/client/src/components/flightplan/FlightPlan.tsx @@ -40,7 +40,7 @@ function FlightPlanPath(props: FlightPlanProps) { } const WaypointMarkers = (props: FlightPlanProps) => { - if (props.selected && props.flight.waypoints == null) { + if (!props.selected || props.flight.waypoints == null) { return <>; }