From 285dca8d2cdfb32f787bb932e2b0459a7e8b1a63 Mon Sep 17 00:00:00 2001 From: HarelM Date: Sun, 4 Feb 2024 18:07:43 +0200 Subject: [PATCH] Fix lint --- src/components/MapMaplibreGlFeaturePropertyPopup.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/MapMaplibreGlFeaturePropertyPopup.tsx b/src/components/MapMaplibreGlFeaturePropertyPopup.tsx index 47ebec2c..d77ab0c1 100644 --- a/src/components/MapMaplibreGlFeaturePropertyPopup.tsx +++ b/src/components/MapMaplibreGlFeaturePropertyPopup.tsx @@ -32,10 +32,10 @@ function renderFeature(feature: InspectFeature, idx: number) { {Object.keys(feature.properties).map(propertyName => { const property = feature.properties[propertyName]; - return
-
{propertyName}
-
{displayValue(property)}
-
+ return
+
{propertyName}
+
{displayValue(property)}
+
})} }