From ac5c36ab6633b8ed59d47a7a1aad09f831648ab7 Mon Sep 17 00:00:00 2001 From: Baptiste Grob <60621355+baptiste-grob@users.noreply.github.com> Date: Thu, 25 Jun 2020 17:26:42 +0200 Subject: [PATCH] fix: type error --- app/assets/javascripts/views/application/application_view.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/views/application/application_view.ts b/app/assets/javascripts/views/application/application_view.ts index b64aa16dd..40f151f1c 100644 --- a/app/assets/javascripts/views/application/application_view.ts +++ b/app/assets/javascripts/views/application/application_view.ts @@ -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();