diff options
author | Thomas <thomas.b.huang@gmail.com> | 2018-11-01 05:30:51 +0800 |
---|---|---|
committer | Thomas <thomas.b.huang@gmail.com> | 2018-11-01 05:30:51 +0800 |
commit | de297cd74db74cd52a3f2ed449cf65ac3112207d (patch) | |
tree | 3c8872521e6a6d577d8595878a09fe8a849fc9ce /ui/app | |
parent | f2fea8043edca84f1aa9ebc13ecea55c9919070d (diff) | |
download | tangerine-wallet-browser-de297cd74db74cd52a3f2ed449cf65ac3112207d.tar.gz tangerine-wallet-browser-de297cd74db74cd52a3f2ed449cf65ac3112207d.tar.zst tangerine-wallet-browser-de297cd74db74cd52a3f2ed449cf65ac3112207d.zip |
nextUnreadNotice undefined rather than null
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/reducers/metamask.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/reducers/metamask.js b/ui/app/reducers/metamask.js index c1a4fb54a..dfa2f3656 100644 --- a/ui/app/reducers/metamask.js +++ b/ui/app/reducers/metamask.js @@ -74,7 +74,7 @@ function reduceMetamask (state, action) { case actions.CLEAR_NOTICES: return extend(metamaskState, { noActiveNotices: true, - nextUnreadNotice: null, + nextUnreadNotice: undefined, }) case actions.UPDATE_METAMASK_STATE: |