From 7da29f9355f35b0ad68dcab8bd8dd75c1cec275a Mon Sep 17 00:00:00 2001 From: Majorfi Date: Thu, 7 Nov 2024 16:55:31 +0100 Subject: [PATCH] feat: solana --- utils/tools.chains.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/tools.chains.ts b/utils/tools.chains.ts index 6d6e5c3..9112f55 100644 --- a/utils/tools.chains.ts +++ b/utils/tools.chains.ts @@ -84,7 +84,7 @@ export type TAppExtendedChain = TExtendedChain & { }; }; for (const chain of Object.values(indexedWagmiChains)) { - if (!chain || typeof chain !== 'object' || !chain.id) { + if (typeof chain !== 'object' || !chain.id) { continue; } const extendedChain = chain as TAppExtendedChain;