Add missing await (#10952)

This commit is contained in:
Sakshi Sharma
2020-06-18 19:16:02 -07:00
committed by GitHub
parent 6ad33aa879
commit 340d8d37c9
3 changed files with 5 additions and 5 deletions

View File

@@ -95,7 +95,7 @@ export default class MainController implements Disposable {
await this.projectsController.openProject(file);
}
this.projectsController.focusProject(this.projectsController.projects[prevCount]); // focus the first of the newly-opened projects
await this.projectsController.focusProject(this.projectsController.projects[prevCount]); // focus the first of the newly-opened projects
}
}
catch (err) {