diff options
-rw-r--r-- | ui/app/components/modals/deposit-ether-modal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/modals/deposit-ether-modal.js b/ui/app/components/modals/deposit-ether-modal.js index 3f74dc065..a64b3282e 100644 --- a/ui/app/components/modals/deposit-ether-modal.js +++ b/ui/app/components/modals/deposit-ether-modal.js @@ -29,10 +29,10 @@ function mapStateToProps (state) { function mapDispatchToProps (dispatch) { return { toCoinbase: (address) => { - dispatch(actions.buyEth({ network: '1', address, amount: 0 })) + dispatch(actions.buyEth({ service: 'coinbase', address, amount: 0 })) }, toCoinSwitch: (address) => { - dispatch(actions.buyEth({ service: 'coinswitch', address, amount: 0 })) + dispatch(actions.buyEth({ service: 'coinswitch', address })) }, hideModal: () => { dispatch(actions.hideModal()) |