diff --git a/frontend/src/utils/geo/geo-utils.ts b/frontend/src/utils/geo/geo-utils.ts index 8b910455..782cdae9 100644 --- a/frontend/src/utils/geo/geo-utils.ts +++ b/frontend/src/utils/geo/geo-utils.ts @@ -70,7 +70,7 @@ export const validateGeoJSONArea = (geojsonFeature: Feature) => { const area = calculateGeoJSONArea(geojsonFeature); if (!area || isNaN(area) || area === Infinity || area === 0) { - return false; + return true; } return area < MIN_TRAINING_AREA_SIZE || area > MAX_TRAINING_AREA_SIZE; };