1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

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

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