aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-08-09 06:02:45 +0800
committerGitHub <noreply@github.com>2018-08-09 06:02:45 +0800
commit51644962e96594223530b7403fe7dd944b8b77f2 (patch)
treeb0e9fa4ec3fbeb5d6ecfefa0b1f1a55fb7dc87b7 /ui/app
parente98c3b4c01b990678ac58f45448d0e2548396a2b (diff)
downloadtangerine-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/app')
-rw-r--r--ui/app/components/tx-list.js2
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)),
}
}