Skip to content

Commit

Permalink
Merge branch 'SebastianHanfland:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
SternfahrtMuc authored Apr 14, 2024
2 parents f5b3f5f + 17dc0c6 commit 65f97a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const getEnrichedTrackStreetInfos = createSelector(
};
})
.filter(
(wayPoint) => (wayPoint.distanceInKm ?? 0) > 0.001 && wayPoint.type !== TrackWayPointType.Break
(wayPoint) => (wayPoint.distanceInKm ?? 0) > 0.001 || wayPoint.type !== TrackWayPointType.Track
),
}));
}
Expand Down

0 comments on commit 65f97a4

Please sign in to comment.