diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-10-15 18:10:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 18:10:29 -0400 |
commit | e5ef3fe9c26a70cce049fa11430f29e503edb3c8 (patch) | |
tree | 8139188b0cf1ce5662d0d20b0b0acd249f413cfa /ext/bg | |
parent | e6a1bcc0f58a4e9271149ec75d77f4072f357989 (diff) |
Remove debug log (#924)
Diffstat (limited to 'ext/bg')
-rw-r--r-- | ext/bg/js/settings/dictionary-controller.js | 3 |
1 files changed, 1 insertions, 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); } } } |