diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-08-09 06:02:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-09 06:02:45 +0800 |
commit | 51644962e96594223530b7403fe7dd944b8b77f2 (patch) | |
tree | b0e9fa4ec3fbeb5d6ecfefa0b1f1a55fb7dc87b7 /ui | |
parent | e98c3b4c01b990678ac58f45448d0e2548396a2b (diff) | |
download | tangerine-wallet-browser-51644962e96594223530b7403fe7dd944b8b77f2.tar tangerine-wallet-browser-51644962e96594223530b7403fe7dd944b8b77f2.tar.gz tangerine-wallet-browser-51644962e96594223530b7403fe7dd944b8b77f2.tar.bz2 tangerine-wallet-browser-51644962e96594223530b7403fe7dd944b8b77f2.tar.lz tangerine-wallet-browser-51644962e96594223530b7403fe7dd944b8b77f2.tar.xz tangerine-wallet-browser-51644962e96594223530b7403fe7dd944b8b77f2.tar.zst tangerine-wallet-browser-51644962e96594223530b7403fe7dd944b8b77f2.zip |
Fix lint error in tx-list
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/tx-list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js index 6e8d5d3eb..d8c4a9d19 100644 --- a/ui/app/components/tx-list.js +++ b/ui/app/components/tx-list.js @@ -35,7 +35,7 @@ function mapStateToProps (state) { function mapDispatchToProps (dispatch) { return { showConfTxPage: ({ id }) => dispatch(showConfTxPage({ id })), - updateNetworkNonce: (address) => dispatch(updateNetworkNonce(address)) + updateNetworkNonce: (address) => dispatch(updateNetworkNonce(address)), } } |