diff --git a/apps/web-antd/src/views/store/delivery/composables/delivery-page/geojson.ts b/apps/web-antd/src/views/store/delivery/composables/delivery-page/geojson.ts index 46f1daa..e7e39af 100644 --- a/apps/web-antd/src/views/store/delivery/composables/delivery-page/geojson.ts +++ b/apps/web-antd/src/views/store/delivery/composables/delivery-page/geojson.ts @@ -82,7 +82,9 @@ export function parsePolygonGeoJson(raw: string) { const outerRing = coordinates[0]; if (!Array.isArray(outerRing)) continue; - const points = outerRing.filter((point) => isLngLatTuple(point)) as LngLatTuple[]; + const points = outerRing.filter((point) => + isLngLatTuple(point), + ) as LngLatTuple[]; if (points.length >= 4) { polygons.push(points.map(([lng, lat]) => [lng, lat])); }