diff --git a/app/renderer/views/Dashboard/WithdrawModal.js b/app/renderer/views/Dashboard/WithdrawModal.js index 6954567f13..5c4afe6133 100644 --- a/app/renderer/views/Dashboard/WithdrawModal.js +++ b/app/renderer/views/Dashboard/WithdrawModal.js @@ -73,7 +73,7 @@ class WithdrawModal extends React.Component { const setAmount = value => { this.setState({ amount: String(value), - amountInUsd: String(Number.parseFloat(value || '0') / currencyInfo.cmcPriceUsd), + amountInUsd: String(Number.parseFloat(value || '0') * currencyInfo.cmcPriceUsd), }); };