From 8525571afc7ab846ebb9b7929cea11d885a50c78 Mon Sep 17 00:00:00 2001 From: antelle Date: Mon, 19 Apr 2021 18:18:37 +0200 Subject: [PATCH] disabled the extension setting for mobile --- app/scripts/util/features.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/util/features.js b/app/scripts/util/features.js index 62468c5b..9fe76c0f 100644 --- a/app/scripts/util/features.js +++ b/app/scripts/util/features.js @@ -63,7 +63,7 @@ const Features = { return this._browserIcon; }, get supportsBrowserExtensions() { - return this.isDesktop || this.browserIcon !== 'safari'; + return !this.isMobile && (this.isDesktop || this.browserIcon !== 'safari'); }, get extensionBrowserFamily() { if (Features.isDesktop) {