Skip to content

Commit

Permalink
Fixed tokens argument being passed to account request action
Browse files Browse the repository at this point in the history
  • Loading branch information
mhuggins committed Jan 27, 2018
1 parent b108b17 commit f2250e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/containers/Dashboard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const actionCreators = {
const mapDispatchToProps = dispatch => bindActionCreators(actionCreators, dispatch)

const mapAccountActionsToProps = (actions, props) => ({
loadWalletData: () => actions.request({ net: props.net, address: props.address })
loadWalletData: () => actions.request({ net: props.net, address: props.address, tokens: props.tokens })
})

export default compose(
Expand Down
2 changes: 1 addition & 1 deletion app/containers/WalletInfo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const mapSettingsActionsToProps = (actions) => ({
})

const mapAccountActionsToProps = (actions, props) => ({
loadWalletData: () => actions.request({ net: props.net, address: props.address })
loadWalletData: () => actions.request({ net: props.net, address: props.address, tokens: props.tokens })
})

export default compose(
Expand Down

0 comments on commit f2250e1

Please sign in to comment.