Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/map/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,10 @@ export const MapComponent = () => {
}
}, [directionResults, heightPayload, updateInclineDecline]);

useEffect(() => {
getHeightData();
}, [getHeightData]);

Comment on lines +350 to +353
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in the end this is the only relevant change. can you revert everything else pls?

// Update markers when waypoints or isochrone centers change
const geocodeResults = useIsochronesStore((state) => state.geocodeResults);
const markers = useMemo(() => {
Expand Down
Loading