diff --git a/dashboard/src/Index.vue b/dashboard/src/Index.vue index 1ee49ca18..00fc0ba0a 100644 --- a/dashboard/src/Index.vue +++ b/dashboard/src/Index.vue @@ -72,7 +72,6 @@ function onOnline() { fetcher.globalOptions.errorHook = (error) => { // network error, request killed by browser if (error instanceof TypeError) { - ready.value = false; return offlineOverlay.value.open(); } @@ -81,10 +80,8 @@ fetcher.globalOptions.errorHook = (error) => { if (error.status === 500 || error.status === 501) { // actual internal server error, most likely a bug or timeout log to console only to not alert the user - if (!ready.value) { - console.error(error); - console.log('------\nCloudron Internal Error\n\nIf you see this, please send a mail with above log to support@cloudron.io\n------\n'); - } + console.error(error); + console.log('------\nCloudron Internal Error\n\nIf you see this, please send a mail with above log to support@cloudron.io\n------\n'); } if (error.status >= 502) { @@ -241,7 +238,7 @@ onMounted(async () => {