diff --git a/src/Pages/WithDrawal/DrawalRequest/PendingRequest.jsx b/src/Pages/WithDrawal/DrawalRequest/PendingRequest.jsx
index 7fbe667..b32eb75 100644
--- a/src/Pages/WithDrawal/DrawalRequest/PendingRequest.jsx
+++ b/src/Pages/WithDrawal/DrawalRequest/PendingRequest.jsx
@@ -114,7 +114,7 @@ const PendingRequest = () => {
"Country",
"Phone Number",
"Amount in Investor currency",
- "Currency",
+ // "Currency",
// "Withdrawal Amount",
"Action",
];
@@ -187,13 +187,13 @@ const PendingRequest = () => {
),
- Currency: (
-
-
- {item?.currencyCode}
-
-
- ),
+ // Currency: (
+ //
+ //
+ // {item?.currencyCode}
+ //
+ //
+ // ),
// "Withdrawal Amount": (
//
//
@@ -206,13 +206,13 @@ const PendingRequest = () => {
//
// ),
"Amount in Investor currency": (
-
+
{/* {item.investorAmount} */}
{parseFloat(item?.investorAmount || 0).toLocaleString(undefined, {
minimumFractionDigits: 2,
maximumFractionDigits: 2,
- })}
+ })}{item?.currencyCode}
),