diff --git a/webapp/pages/settings/index.vue b/webapp/pages/settings/index.vue index 4ad57b49c..eb6fbbd33 100644 --- a/webapp/pages/settings/index.vue +++ b/webapp/pages/settings/index.vue @@ -159,7 +159,6 @@ export default { this.cities = [] return } - this.loadingGeo = true this.axiosSource = CancelToken.source() @@ -176,6 +175,10 @@ export default { .then(res => { this.cities = this.processCityResults(res) }) + .catch(error => { + /* eslint-disable-next-line no-console */ + console.log(error) + }) .finally(() => { this.loadingGeo = false })