diff --git a/src/Logic/Web/MangroveReviews.ts b/src/Logic/Web/MangroveReviews.ts index d94c300b9..77271ee33 100644 --- a/src/Logic/Web/MangroveReviews.ts +++ b/src/Logic/Web/MangroveReviews.ts @@ -177,7 +177,6 @@ export default class FeatureReviews { testmode?: Store, loadingAllowed?: UIEventSource ) { - console.trace(">>> Creating FeatureReviews", options) this.loadingAllowed = loadingAllowed const centerLonLat = GeoOperations.centerpointCoordinates(feature) ;[this._lon, this._lat] = centerLonLat @@ -217,12 +216,10 @@ export default class FeatureReviews { } this._name = tagsSource.map((tags) => { const defaultName = tags[nameKey] - console.trace(">>>", options, defaultName) if (defaultName && defaultName !== "") { console.log("Using default name:", defaultName, "fallback:", options.fallbackName) return defaultName } - console.trace("Using fallback name", options?.fallbackName, options) return options?.fallbackName })