Skip to content

Commit

Permalink
fix: jetton icon orig image fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhovnitsky committed Sep 26, 2024
1 parent 3aa8b3c commit 7b669ac
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 7b669ac

Please sign in to comment.