From e5ef3fe9c26a70cce049fa11430f29e503edb3c8 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Thu, 15 Oct 2020 18:10:29 -0400 Subject: [PATCH] Remove debug log (#924) --- ext/bg/js/settings/dictionary-controller.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ext/bg/js/settings/dictionary-controller.js b/ext/bg/js/settings/dictionary-controller.js index 2ff12ab9..767b1147 100644 --- a/ext/bg/js/settings/dictionary-controller.js +++ b/ext/bg/js/settings/dictionary-controller.js @@ -418,8 +418,7 @@ class DictionaryController { } if (targets.length > 0) { - const r = await this._settingsController.modifyGlobalSettings(targets); - console.log(r); + await this._settingsController.modifyGlobalSettings(targets); } } }