diff --git a/ui/components/app/currency-input/currency-input.js b/ui/components/app/currency-input/currency-input.js index 6d7eee4f1268..43da00ad3ab0 100644 --- a/ui/components/app/currency-input/currency-input.js +++ b/ui/components/app/currency-input/currency-input.js @@ -55,7 +55,7 @@ export default function CurrencyInput({ }) { const assetDecimals = isNaN(Number(asset?.decimals)) ? NATIVE_CURRENCY_DECIMALS - : Number(asset?.decimals) + : Number(asset?.decimals); const preferredCurrency = useSelector(getNativeCurrency); const secondaryCurrency = useSelector(getCurrentCurrency);