Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ejwessel committed Sep 11, 2024
1 parent d653df9 commit f27f091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/app/currency-input/currency-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f27f091

Please sign in to comment.