From 9cd0e806dbccbaf118cb4ea23ea3946b8b0843ee Mon Sep 17 00:00:00 2001 From: Floke Date: Wed, 4 Feb 2026 13:48:21 +0000 Subject: [PATCH] feat([2fd88f42]): add dynamic legend to points map view --- heatmap-tool/frontend/src/components/MapDisplay.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/heatmap-tool/frontend/src/components/MapDisplay.tsx b/heatmap-tool/frontend/src/components/MapDisplay.tsx index 756b1805..5df9301b 100644 --- a/heatmap-tool/frontend/src/components/MapDisplay.tsx +++ b/heatmap-tool/frontend/src/components/MapDisplay.tsx @@ -84,6 +84,7 @@ const MapDisplay: React.FC = ({ heatmapData, radiusMultiplier, attribution='© OpenStreetMap contributors' /> {viewMode === 'points' ? renderPoints() : renderHeatmap()} + {viewMode === 'points' && } ); };