aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-10-24 02:49:14 +0800
committerGitHub <noreply@github.com>2017-10-24 02:49:14 +0800
commit9984c9516aaabca18c644cfa9d3708de29a643e4 (patch)
tree6dcac61da12b832333c7e4199ef5cc13f62cbc5e /ui/app/components
parent8de0292d662e2de04f9cd3faf024631fc090c203 (diff)
parentb96ba5522993915cf809ba2f438c2c5a9c776e1f (diff)
downloadtangerine-wallet-browser-9984c9516aaabca18c644cfa9d3708de29a643e4.tar.gz
tangerine-wallet-browser-9984c9516aaabca18c644cfa9d3708de29a643e4.tar.zst
tangerine-wallet-browser-9984c9516aaabca18c644cfa9d3708de29a643e4.zip
Merge pull request #2434 from danjm/NewUI-flat-clear-send-state
[NewUI] Clear send state on cancelling and signing.
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/send/send-v2-container.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/app/components/send/send-v2-container.js b/ui/app/components/send/send-v2-container.js
index c14865e9f..80b52a3ab 100644
--- a/ui/app/components/send/send-v2-container.js
+++ b/ui/app/components/send/send-v2-container.js
@@ -80,5 +80,6 @@ function mapDispatchToProps (dispatch) {
updateSendMemo: newMemo => dispatch(actions.updateSendMemo(newMemo)),
updateSendErrors: newError => dispatch(actions.updateSendErrors(newError)),
goHome: () => dispatch(actions.goHome()),
+ clearSend: () => dispatch(actions.clearSend())
}
}