diff --git a/src/app/country-intel.ts b/src/app/country-intel.ts index 91d11f14b..94a8dd7bf 100644 --- a/src/app/country-intel.ts +++ b/src/app/country-intel.ts @@ -134,12 +134,8 @@ export class CountryIntelManager implements AppModule { const geo = await reverseGeocode(lat, lon); if (token !== this.briefRequestToken) return; if (!geo) { - if (this.ctx.countryBriefPage.showGeoError) { - this.ctx.countryBriefPage.showGeoError(() => this.openCountryBrief(lat, lon)); - } else { - this.ctx.countryBriefPage.hide(); - this.ctx.map?.setRenderPaused(false); - } + this.ctx.countryBriefPage.hide(); + this.ctx.map?.setRenderPaused(false); return; }