diff --git a/src/components/MyWallet/WalletComponent/PurchasesTable.jsx b/src/components/MyWallet/WalletComponent/PurchasesTable.jsx index 93d2a22..1295ec5 100644 --- a/src/components/MyWallet/WalletComponent/PurchasesTable.jsx +++ b/src/components/MyWallet/WalletComponent/PurchasesTable.jsx @@ -29,7 +29,7 @@ function PurchasesTable({purchase}) { {currentPurchase.map((item, index) => ( - {item.added_date}
+ {item.added_date}
{item.confirmation} {item.amount} diff --git a/src/components/MyWallet/WalletComponent/RecentActivityTable.jsx b/src/components/MyWallet/WalletComponent/RecentActivityTable.jsx index 8d3fc87..1e1a842 100644 --- a/src/components/MyWallet/WalletComponent/RecentActivityTable.jsx +++ b/src/components/MyWallet/WalletComponent/RecentActivityTable.jsx @@ -20,8 +20,8 @@ function RecentActivityTable({payment}) { Date - Trx. - Amount/Fee + Trx. + Amnt./Fee Status @@ -31,8 +31,8 @@ function RecentActivityTable({payment}) { {currentActivity.map((item, index) => ( {item.trx_date} - - {item.amount}/{item.fee} + + {item.amount}
{item.fee} {item.status} ))}