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

This commit is contained in:
2026-02-04 12:05:44 +00:00
parent fb4ea51df7
commit 17bc085fb1

View File

@@ -2,7 +2,7 @@
import React from 'react';
import { MapContainer, TileLayer, CircleMarker, Tooltip } from 'react-leaflet';
import 'leaflet/dist/leaflet.css';
import { HeatmapPoint } from '../App'; // Assuming type is exported from App.tsx
import type { HeatmapPoint } from '../App';
interface MapDisplayProps {
heatmapData: HeatmapPoint[];