diff --git a/apps/remix-ide/src/remixAppManager.js b/apps/remix-ide/src/remixAppManager.js index dc77600112..053ff4a758 100644 --- a/apps/remix-ide/src/remixAppManager.js +++ b/apps/remix-ide/src/remixAppManager.js @@ -76,11 +76,10 @@ export class RemixAppManager extends PluginManager { return false } // skipping native plugins' requests - if (isNative(from) && !isSensitiveCall) { + if (isNative(from)) { return true } - // ask the user for permission return await this.call('permissionhandler', 'askPermission', this.profiles[from], this.profiles[to], method, message, isSensitiveCall) }