From 87e706c22369650eae5db588c597d9db22761130 Mon Sep 17 00:00:00 2001 From: "Tanner Collin (aider)" Date: Thu, 14 Aug 2025 21:14:33 +0000 Subject: [PATCH] fix: return null from FitBounds component --- mapper/src/App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mapper/src/App.js b/mapper/src/App.js index 63c60e6..1a874b9 100644 --- a/mapper/src/App.js +++ b/mapper/src/App.js @@ -147,6 +147,8 @@ function FitBounds({ coords, mapState, end, duration, loading }) { isInitialLoad.current = false; } }, [coords, loading, map]); // Dependencies: run when data is ready. + + return null; } function Map({end, duration, slider, mapState, setMapState}) {