From 08d66eec062fa3b34a7c00a6d841d6504c3cdc45 Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Sat, 17 May 2025 11:18:25 +0330 Subject: [PATCH] switch overdue and archived --- src/pages/receipts/List.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/receipts/List.tsx b/src/pages/receipts/List.tsx index 1804a7f..facda77 100644 --- a/src/pages/receipts/List.tsx +++ b/src/pages/receipts/List.tsx @@ -100,16 +100,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)} />