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; } }