Skip to content

Commit

Permalink
fix: missing logo url
Browse files Browse the repository at this point in the history
  • Loading branch information
nuanyang233 committed Jan 23, 2025
1 parent f820892 commit 21b989e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function OperationFooter({
if (nativeTokenBalance && isGreaterThan(SOL_REDPACKET_CREATE_DEFAULT_GAS, nativeTokenBalance))
return (
<ActionButton fullWidth disabled variant="roundedDark">
<Trans>Insufficient Balance for Gas Fee</Trans>
<Trans>Insufficient Balance for Gas Fee </Trans>
</ActionButton>
)
if (!canClaim && !canRefund) return null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export const RedPacketRecord = memo(function RedPacketRecord({
badgeSize={16}
chainId={chainId}
address={token?.address ?? createSuccessResult?.token_address}
logoURL={token_logo}
logoURL={token_logo !== 'missing.png' ? token_logo : undefined}
symbol={token_symbol}
name={token_symbol}
disableBadge={pluginID === NetworkPluginID.PLUGIN_SOLANA}
Expand Down

0 comments on commit 21b989e

Please sign in to comment.