fix([2fd88f42]): correct type import for TooltipColumn

This commit is contained in:
2026-02-04 14:26:16 +00:00
parent 377271f194
commit 6a63330c25

View File

@@ -6,7 +6,7 @@ import 'leaflet/dist/leaflet.css';
import 'leaflet.heat'; import 'leaflet.heat';
import type { HeatmapPoint, MapMode } from '../App'; import type { HeatmapPoint, MapMode } from '../App';
import MarkerClusterGroup from 'react-leaflet-cluster'; import MarkerClusterGroup from 'react-leaflet-cluster';
import { TooltipColumn } from './TooltipManager'; import type { TooltipColumn } from './TooltipManager';
interface MapDisplayProps { interface MapDisplayProps {
heatmapData: HeatmapPoint[]; heatmapData: HeatmapPoint[];