aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/app/reducers/app.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js
index 7bd1dfd1f..132e73f69 100644
--- a/ui/app/reducers/app.js
+++ b/ui/app/reducers/app.js
@@ -253,7 +253,7 @@ function reduceApp (state, action) {
})
} else {
- closePopupIfOpen()
+ notification.closePopup()
return extend(appState, {
transForward: false,
@@ -520,9 +520,3 @@ function indexForPending (state, txId) {
return idx
}
-function closePopupIfOpen() {
- notification.getPopup((popup) => {
- if (!popup) return
- extension.windows.remove(popup.id, console.error)
- })
-}