diff --git a/context/ChainsContext/helpers.tsx b/context/ChainsContext/helpers.tsx index 2b3cf79..e4cb172 100644 --- a/context/ChainsContext/helpers.tsx +++ b/context/ChainsContext/helpers.tsx @@ -27,6 +27,8 @@ export const isChainInfoFilled = (chain: Partial): chain is ChainInfo chain.denom && chain.displayDenom && Number.isSafeInteger(chain.displayDenomExponent) && + chain.displayDenomExponent && // Check not needed but narrows next line's type + chain.displayDenomExponent >= 0 && chain.assets?.length && chain.gasPrice && chain.addressPrefix,