Skip to content

Commit

Permalink
fix: wagmi config
Browse files Browse the repository at this point in the history
  • Loading branch information
Argeare5 committed Jan 13, 2024
1 parent 036b7f0 commit e4977ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/web3/utils/createWagmiConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ export function createWagmiConfig({
console.log('chainsArrayUnique', chainsArrayUnique);
console.log(
'chainsArrayTotal',
Object.values(VIEM_CHAINS).filter((chain) =>
chainsArrayUnique.forEach((c) => chain.id !== c.id),
Object.values(VIEM_CHAINS).filter(
(chain) => !!chainsArrayUnique.find((c) => chain.id !== c.id),
),
);

Expand Down

0 comments on commit e4977ce

Please sign in to comment.