Load window even if grpc fails

This commit is contained in:
Aditya Kulkarni 2020-04-05 13:53:27 -07:00
parent 8f0b964fdd
commit a785a998e8
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@ class LoadingScreen extends Component<Props, LoadingScreenState> {
if (rescanning) { if (rescanning) {
this.runSyncStatusPoller(); this.runSyncStatusPoller();
} else { } else {
this.doFirstTimeSetup(); // Do it in a timeout, so the window has a chance to load.
setTimeout(() => this.doFirstTimeSetup(), 100);
} }
} }