Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Dec 19, 2024
1 parent 84466c7 commit 6a8d722
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/extension/src/hooks/use-get-search-chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ export const useGetSearchChains = ({

const chains = queryChains.response.data.chains;
for (const disabledChainInfo of disabledChainInfos) {
if (!dupCheck.has(disabledChainInfo.chainId)) {
if (
!dupCheck.has(
ChainIdHelper.parse(disabledChainInfo.chainId).identifier
)
) {
chains.push(disabledChainInfo.embedded);
}
}
Expand Down

0 comments on commit 6a8d722

Please sign in to comment.