From 48a340de781c017c9ecb6c788ac0954b8ad48d8d Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 7 Feb 2025 22:48:02 +0100 Subject: [PATCH] Chore: remove obsolete cast --- src/Logic/GeoOperations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Logic/GeoOperations.ts b/src/Logic/GeoOperations.ts index 1c76c96a55..b049399ea3 100644 --- a/src/Logic/GeoOperations.ts +++ b/src/Logic/GeoOperations.ts @@ -76,7 +76,7 @@ export class GeoOperations { * @param feature */ static centerpoint(feature: Feature): Feature { - const newFeature: Feature = turf.center(feature) + const newFeature: Feature = turf.center(feature) newFeature.properties = feature.properties newFeature.id = feature.id return newFeature