From f27f091d4b6ff0effafa0c1eea70aed40b958ac6 Mon Sep 17 00:00:00 2001 From: Ethan Wessel Date: Wed, 11 Sep 2024 14:12:39 -0700 Subject: [PATCH] chore: lint fix --- ui/components/app/currency-input/currency-input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);