diff --git a/src/actions/ethereum/SendFormActions.js b/src/actions/ethereum/SendFormActions.js index c3fe2119..8743ff18 100644 --- a/src/actions/ethereum/SendFormActions.js +++ b/src/actions/ethereum/SendFormActions.js @@ -321,8 +321,8 @@ export const onLocalCurrencyChange = (localCurrency: { localCurrency: localCurrency.value, }, }); - // Recalculates amount with new currency rates - dispatch(onLocalAmountChange(state.localAmount)); + // Recalculates local amount with new currency rates + dispatch(onAmountChange(state.amount, true)); }; /* diff --git a/src/actions/ripple/SendFormActions.js b/src/actions/ripple/SendFormActions.js index f7efceaa..14dd94af 100644 --- a/src/actions/ripple/SendFormActions.js +++ b/src/actions/ripple/SendFormActions.js @@ -277,8 +277,8 @@ export const onLocalCurrencyChange = (localCurrency: { localCurrency: localCurrency.value, }, }); - // Recalculates amount with new currency rates - dispatch(onLocalAmountChange(state.localAmount)); + // Recalculates local amount with new currency rates + dispatch(onAmountChange(state.amount, true)); }; /*