From 7231d97492657bbe2c74eb7b8535f4be5026828e Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Wed, 3 Jul 2024 21:14:10 +0100 Subject: [PATCH] currency added to amount --- src/components/MyWallet/Popup/ConfirmAddFund.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/MyWallet/Popup/ConfirmAddFund.jsx b/src/components/MyWallet/Popup/ConfirmAddFund.jsx index 031fcd0..28d4728 100644 --- a/src/components/MyWallet/Popup/ConfirmAddFund.jsx +++ b/src/components/MyWallet/Popup/ConfirmAddFund.jsx @@ -51,7 +51,7 @@ function AmountSection({ currency, amount, country }) {
{/* text-xl font-bold text-dark-gray dark:text-white tracking-tighter my-1 */}

- Amount({currency}) + Amount ({currency})

{formattedAmount} @@ -91,7 +91,7 @@ function TotalSection({ currency, amount, fee, country }) { return (

- Total + Total ({currency})

{formattedTotal} -- 2.34.1