Skip to content

Commit

Permalink
add network check back for isReady
Browse files Browse the repository at this point in the history
  • Loading branch information
Puyodead1 committed Sep 5, 2023
1 parent eb48399 commit ef1ec8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/AppStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit ef1ec8e

Please sign in to comment.