File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
frontend/src/component/Mapper Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ const ClimateMap = observer(({ onMount = () => true }: ClimateMapProps) => {
9595 } , [ ] ) ;
9696
9797 // Load data when mode changes
98- // biome-ignore lint/correctness/useExhaustiveDependencies: mobx store values should trigger data loading.
9998 useEffect ( ( ) => {
10099 const loadData = async ( ) => {
101100 // Avoid global requests before viewport is known in grid mode
@@ -180,7 +179,6 @@ const ClimateMap = observer(({ onMount = () => true }: ClimateMapProps) => {
180179 } , [ onMount ] ) ;
181180
182181 // Clear processing errors on mode or input changes to avoid blocking other modes.
183- // biome-ignore lint/correctness/useExhaustiveDependencies: mobx store values should reset processing errors.
184182 useEffect ( ( ) => {
185183 const inputKey = [
186184 userStore . mapMode ,
@@ -318,7 +316,6 @@ const ClimateMap = observer(({ onMount = () => true }: ClimateMapProps) => {
318316 ] ) ;
319317
320318 // Worldwide/Grid mode effect (dependent on temperatureDataStore.rawRegionTemperatureData)
321- // biome-ignore lint/correctness/useExhaustiveDependencies: mobx store values should trigger processing.
322319 useEffect ( ( ) => {
323320 console . log ( "GRID-PROBLEM-DEBUG effect: processData start" , {
324321 mapMode : userStore . mapMode ,
You can’t perform that action at this time.
0 commit comments