diff options
author | Dan <danjm.com@gmail.com> | 2018-03-14 10:32:27 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-03-14 10:32:27 +0800 |
commit | 798988597bd17aa73d7a20502905a453f1d51ba4 (patch) | |
tree | 69f083adbe19ce4e5b8094f1004cb1fd3a3f75c9 /ui/app/reducers | |
parent | cc267d6c818c83b0384b569733d05efef384ac3e (diff) | |
parent | 5fbfb0b67c9eb50b6cc503e78154ab237d2d9731 (diff) | |
download | dexon-wallet-798988597bd17aa73d7a20502905a453f1d51ba4.tar.gz dexon-wallet-798988597bd17aa73d7a20502905a453f1d51ba4.tar.zst dexon-wallet-798988597bd17aa73d7a20502905a453f1d51ba4.zip |
Merge branch 'master' into retry-tx-refractor
Diffstat (limited to 'ui/app/reducers')
-rw-r--r-- | ui/app/reducers/metamask.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/app/reducers/metamask.js b/ui/app/reducers/metamask.js index 2c93172c..e6e02d05 100644 --- a/ui/app/reducers/metamask.js +++ b/ui/app/reducers/metamask.js @@ -45,6 +45,7 @@ function reduceMetamask (state, action) { featureFlags: {}, networkEndpointType: OLD_UI_NETWORK_TYPE, isRevealingSeedWords: false, + welcomeScreenSeen: false, }, state.metamask) switch (action.type) { @@ -349,6 +350,11 @@ function reduceMetamask (state, action) { networkEndpointType: action.value, }) + case actions.CLOSE_WELCOME_SCREEN: + return extend(metamaskState, { + welcomeScreenSeen: true, + }) + default: return metamaskState |