diff options
-rw-r--r-- | ui/app/app.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 1ae579664..ef436d4e3 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -358,9 +358,9 @@ App.prototype.toggleMetamaskActive = function () { } App.prototype.clearNotifications = function () { - chrome.notifications.getAll( function (object) { - for (let notification in object){ - chrome.notifications.clear(notification) - } + chrome.notifications.getAll(function (object) { + for (let notification in object){ + chrome.notifications.clear(notification) + } }) -}; +} |