Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
delivan committed Oct 14, 2024
1 parent 2b280c6 commit 18d3a20
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions packages/background/src/chains/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1176,14 +1176,16 @@ export class ChainsService {
return modularChainInfo;
})
.concat(
this.suggestedChainInfos.map((chainInfo) => {
return {
chainId: chainInfo.chainId,
chainName: chainInfo.chainName,
chainSymbolImageUrl: chainInfo.chainSymbolImageUrl,
cosmos: chainInfo,
};
})
this.mergeChainInfosWithDynamics(this.suggestedChainInfos).map(
(chainInfo) => {
return {
chainId: chainInfo.chainId,
chainName: chainInfo.chainName,
chainSymbolImageUrl: chainInfo.chainSymbolImageUrl,
cosmos: chainInfo,
};
}
)
);
},
{
Expand Down

0 comments on commit 18d3a20

Please sign in to comment.