diff --git a/apps/remix-ide/src/app.js b/apps/remix-ide/src/app.js index a7673d45bc..9fecce5b50 100644 --- a/apps/remix-ide/src/app.js +++ b/apps/remix-ide/src/app.js @@ -425,7 +425,11 @@ class AppComponent { ); // @todo(remove the timeout when activatePlugin is on 0.3.0) - await this.appManager.call(...callDetails).catch(console.error); + try { + await this.appManager.call(...callDetails) + } catch (e) { + console.error(e) + } } } }