From 6ba1b19f05bdcbdb88d6df8e19ae8b1ea3f43520 Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Thu, 15 May 2025 12:04:02 +0330 Subject: [PATCH] switch overdue and archive --- src/pages/receipts/List.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/receipts/List.tsx b/src/pages/receipts/List.tsx index f1b1da5..c0bf121 100644 --- a/src/pages/receipts/List.tsx +++ b/src/pages/receipts/List.tsx @@ -51,16 +51,16 @@ const ReceiptsList: FC = () => { label: t('receip.paid'), value: 'PAID' }, - { - icon: , - label: t('receip.archive'), - value: 'ARCHIVED' - }, { icon: , label: t('receip.overdue'), value: 'OVERDUE' }, + { + icon: , + label: t('receip.archive'), + value: 'ARCHIVED' + }, ]} onChange={(value) => setActiveTab(value as InvoiceStatus)} /> @@ -87,7 +87,7 @@ const ReceiptsList: FC = () => { { getInvoices.isPending ? - + : getInvoices.data?.data?.invoices?.map((item: ReceiptItemType) => { return (