Skip to content

Commit

Permalink
Merge pull request #1081 from tonwhales/fix/hub-1432
Browse files Browse the repository at this point in the history
fix: jetton icon orig image fallback
  • Loading branch information
vzhovnitsky authored Sep 26, 2024
2 parents 1f76854 + 7b669ac commit 9348ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/engine/hooks/jettons/useJetton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function useJetton(params: { owner: Address | string, master?: Address |
symbol,
description,
decimals: content.decimals ?? null,
icon: content.image?.preview256 ?? null,
icon: content.image?.preview256 || content.originalImage || null,
disabled: false,
assets: !!content.assets ? [content.assets[0], content.assets[1]] : null,
pool: content.pool,
Expand Down

0 comments on commit 9348ee5

Please sign in to comment.