Skip to content

Commit

Permalink
feat: solana
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Nov 7, 2024
1 parent f67823b commit 7da29f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/tools.chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7da29f9

Please sign in to comment.