I think I found the cause. When using the useEffect hook with dependencies, React executes the function when any dependency changes. As we had assigned to it many dependencies, the function was executed every time a single one changed. The refactor in #130 incorporated a major rework of the landmark retrieval, so now it should be fixed.
I think I found the cause. When using the useEffect hook with dependencies, React executes the function when any dependency changes. As we had assigned to it many dependencies, the function was executed every time a single one changed. The refactor in #130 incorporated a major rework of the landmark retrieval, so now it should be fixed.