From 57ce1bd2970aacbac386a77280edca8a14aeba36 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Tue, 12 Dec 2023 20:30:49 +0100 Subject: [PATCH] fix(Profile import) fixes #1464 Signed-off-by: Marcel Klehr --- src/ui/store/actions.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ui/store/actions.js b/src/ui/store/actions.js index f7538e3313..3d49f5e81c 100644 --- a/src/ui/store/actions.js +++ b/src/ui/store/actions.js @@ -46,7 +46,6 @@ export const actionsDefinition = { return account.id }, async [actions.IMPORT_ACCOUNTS]({commit, dispatch, state}, accounts) { - await browser.permissions.request({origins: ['*://*/*']}) await Account.import(accounts) await dispatch(actions.LOAD_ACCOUNTS) },