From 5200a73472e40f9fc99f03c760f78c4e6f33426f Mon Sep 17 00:00:00 2001 From: Anton Tranelis Date: Tue, 4 Jun 2024 12:07:49 +0200 Subject: [PATCH] removed logging --- src/Components/Map/UtopiaMap.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Components/Map/UtopiaMap.tsx b/src/Components/Map/UtopiaMap.tsx index b75f2531..6e7de1a8 100644 --- a/src/Components/Map/UtopiaMap.tsx +++ b/src/Components/Map/UtopiaMap.tsx @@ -70,8 +70,6 @@ function UtopiaMap({ const onEachFeature = (feature: Feature, layer: L.Layer) => { if (feature.properties) { layer.bindPopup(feature.properties.name); - console.log(feature); - } }