fix: type error

This commit is contained in:
Baptiste Grob
2020-06-25 17:26:42 +02:00
parent 082d3d8e2d
commit ac5c36ab66

View File

@@ -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();