Skip to content

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
arielsvg committed Jun 27, 2020
1 parent 082d3d8 commit ac5c36a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/views/application/application_view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class ApplicationViewCtrl extends PureViewCtrl {

async loadApplication() {
await this.application!.prepareForLaunch({
receiveChallenge: async (challenge, orchestrator) => {
this.application!.promptForChallenge(challenge, orchestrator);
receiveChallenge: async (challenge) => {
this.application!.promptForChallenge(challenge);
}
});
await this.application!.launch();
Expand Down

0 comments on commit ac5c36a

Please sign in to comment.