From 51644962e96594223530b7403fe7dd944b8b77f2 Mon Sep 17 00:00:00 2001 From: Whymarrh Whitby Date: Wed, 8 Aug 2018 19:32:45 -0230 Subject: [PATCH] Fix lint error in tx-list --- ui/app/components/tx-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)), } }