From 020921d9e0f6afe190fe46132d0fa5ad8f84503a Mon Sep 17 00:00:00 2001 From: Matteo Scurati Date: Mon, 17 Jun 2024 11:47:47 +0200 Subject: [PATCH] fix: :bug: display the correct symbol of a native currency --- .../eth-sent-received/eth-sent-received.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; };