diff --git a/src/components/utils/geoUtils.js b/src/components/utils/geoUtils.js index 6bc242f..93bde51 100644 --- a/src/components/utils/geoUtils.js +++ b/src/components/utils/geoUtils.js @@ -112,8 +112,6 @@ const correctInterruptingLakes = (namedFlowlines) => { let lastFeatureId = null; let lastFeatureName = null; let currentFeature = null; - - // console.log('here1', namedFlowlines.map(d => d.properties.feature_id)); namedFlowlines.forEach((flowline, i) => { const lastFlowline = namedFlowlines[i-1]; @@ -134,8 +132,6 @@ const correctInterruptingLakes = (namedFlowlines) => { } }); - // console.log('here2', namedFlowlines.map(d => d.properties.feature_id)); - return namedFlowlines; }