From ef1ec8e598c7a323bbbd15340716a8769818608a Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Tue, 5 Sep 2023 09:53:59 -0400 Subject: [PATCH] add network check back for isReady --- src/stores/AppStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts index 582dc7c4..54362aeb 100644 --- a/src/stores/AppStore.ts +++ b/src/stores/AppStore.ts @@ -104,7 +104,7 @@ export default class AppStore { * Whether the app is done loading and ready to be displayed */ get isReady() { - return !this.isAppLoading && this.isGatewayReady /* && this.isNetworkConnected */; + return !this.isAppLoading && this.isGatewayReady && this.isNetworkConnected; } }