Skip to content

Commit

Permalink
fix: 🐛 display the correct symbol of a native currency
Browse files Browse the repository at this point in the history
  • Loading branch information
matteoscurati committed Jun 17, 2024
1 parent 624763a commit 020921d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ const getTitle = (n: ETHNotification) => {
};

const getDescription = (n: ETHNotification) => {
const { nativeCurrencyName } = getNativeCurrency(n);
const items = createTextItems([nativeCurrencyName], TextVariant.bodyMd);
const { nativeCurrencySymbol } = getNativeCurrency(n);
const items = createTextItems([nativeCurrencySymbol], TextVariant.bodyMd);
return items;
};

Expand Down

0 comments on commit 020921d

Please sign in to comment.