fix([2fd88f42]): correct type import in MapBoundsManager

This commit is contained in:
2026-02-04 13:54:47 +00:00
parent 030c66b258
commit 4876b0317f

View File

@@ -2,7 +2,7 @@
import React, { useEffect } from 'react';
import { useMap } from 'react-leaflet';
import L from 'leaflet';
import { HeatmapPoint } from '../App';
import type { HeatmapPoint } from '../App';
interface MapBoundsManagerProps {
data: HeatmapPoint[];