Fix lint error in tx-list

This commit is contained in:
Whymarrh Whitby 2018-08-08 19:32:45 -02:30 committed by GitHub
parent e98c3b4c01
commit 51644962e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)),
}
}