Skip to content

Commit

Permalink
Change chain images to prefer the asset logo
Browse files Browse the repository at this point in the history
  • Loading branch information
tombeynon committed Oct 28, 2023
1 parent 9fbf857 commit cff0167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/Chain.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Chain = (data) => {
display: data.display || baseAsset?.display?.denom,
symbol: data.symbol || baseAsset?.symbol,
decimals: data.decimals || baseAsset?.decimals,
image: data.image || baseAsset?.image,
image: baseAsset?.image || data.image,
coinGeckoId: baseAsset?.coingecko_id,
assets,
baseAsset
Expand Down

0 comments on commit cff0167

Please sign in to comment.