diff --git a/packages/recoil/src/atoms/solana/token.tsx b/packages/recoil/src/atoms/solana/token.tsx index d6c9fb3db..fa0a4b5f1 100644 --- a/packages/recoil/src/atoms/solana/token.tsx +++ b/packages/recoil/src/atoms/solana/token.tsx @@ -284,6 +284,9 @@ export const solanaFungibleTokenNativeBalance = selectorFamily< decimals: tokenMint.decimals, } : tokenRegistryItem ?? ({} as TokenInfo); + + decimals = tokenMint ? tokenMint.decimals : tokenRegistryItem.decimals; + if (tokenRegistryItem) { if (ticker === "") { ticker = tokenRegistryItem.symbol;