We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3820f01 commit ed06176Copy full SHA for ed06176
ui/pages/notifications/notification-components/eth-sent-received/eth-sent-received.tsx
@@ -63,8 +63,8 @@ const getTitle = (n: ETHNotification) => {
63
};
64
65
const getDescription = (n: ETHNotification) => {
66
- const { nativeCurrencyName } = getNativeCurrency(n);
67
- const items = createTextItems([nativeCurrencyName], TextVariant.bodyMd);
+ const { nativeCurrencySymbol } = getNativeCurrency(n);
+ const items = createTextItems([nativeCurrencySymbol], TextVariant.bodyMd);
68
return items;
69
70
0 commit comments