diff --git a/ui/pages/notifications/notification-components/eth-sent-received/eth-sent-received.tsx b/ui/pages/notifications/notification-components/eth-sent-received/eth-sent-received.tsx index 5b44e42f7112..ec857b45da94 100644 --- a/ui/pages/notifications/notification-components/eth-sent-received/eth-sent-received.tsx +++ b/ui/pages/notifications/notification-components/eth-sent-received/eth-sent-received.tsx @@ -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; };