From e13aea9f7de39aae3e9043326a60b6f957da2b84 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Wed, 15 May 2024 23:41:45 +0100 Subject: [PATCH] Updated the table --- src/pages/payment-record.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/payment-record.tsx b/src/pages/payment-record.tsx index 50837f1b..16b16b3c 100644 --- a/src/pages/payment-record.tsx +++ b/src/pages/payment-record.tsx @@ -618,8 +618,7 @@ export default function PaymentRecord() { id: "agentValue", cell: (info) => { const {value} = columHelperValue(info.column.id, info); - const currency = CURRENCIES.find((x) => x.currency === info.row.original.currency)?.label; - const finalValue = `${value} ${currency}`; + const finalValue = `${value} ${info.row.original.currency}`; return {finalValue}; }, }),