diff --git a/src/components/formatedElements/formattedCurrency/formattedCurrencyView.js b/src/components/formatedElements/formattedCurrency/formattedCurrencyView.js index eb9299537..ddf3a7a9b 100644 --- a/src/components/formatedElements/formattedCurrency/formattedCurrencyView.js +++ b/src/components/formatedElements/formattedCurrency/formattedCurrencyView.js @@ -1,7 +1,7 @@ import React, { Fragment } from 'react'; import { connect } from 'react-redux'; -const FormattedCurrency = ({ value, fixAt = 5, currency }) => { +const FormattedCurrency = ({ value, fixAt = 3, currency }) => { const { currencyRate, currencySymbol } = currency; const valueInCurrency = value * currencyRate; const toFixedValue = valueInCurrency.toFixed(fixAt);