diff --git a/apps/datahub/src/app/app.module.ts b/apps/datahub/src/app/app.module.ts index 89920806f9..6ba4304caa 100644 --- a/apps/datahub/src/app/app.module.ts +++ b/apps/datahub/src/app/app.module.ts @@ -176,6 +176,9 @@ export const metaReducers: MetaReducer[] = !environment.production ? [] : [] return fetch(getOptionalSearchConfig().FILTER_GEOMETRY_URL) .then((resp) => resp.json()) .then(getGeometryFromGeoJSON) + .catch(() => + console.warn('The geometry filter failed to load its geometry') + ) } return null },