diff --git a/components/widgets/ConnectionIndicator.vue b/components/widgets/ConnectionIndicator.vue
index 5305873a..b246037d 100644
--- a/components/widgets/ConnectionIndicator.vue
+++ b/components/widgets/ConnectionIndicator.vue
@@ -34,7 +34,7 @@ export default {
return this.$store.state.attemptingConnection
},
icon() {
- if (!this.user) return null // hide when not connected to server
+ if (!this.user && !this.attemptingConnection) return null // hide when not connected to server
if (this.attemptingConnection) {
return 'cloud_sync'
diff --git a/layouts/default.vue b/layouts/default.vue
index e8223261..202f73ac 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -3,10 +3,6 @@
Attempting server connection...
+Loading server data...