From 4766205f4b30f32120c0de84e60fab4df47540cc Mon Sep 17 00:00:00 2001 From: chavda-bhavik Date: Fri, 5 Jul 2024 16:46:05 +0530 Subject: [PATCH] fix: Switching of valid & invalid records --- apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx b/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx index 5e90d86d4..1713ca7e9 100644 --- a/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx +++ b/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx @@ -88,8 +88,8 @@ export function Phase3(props: IPhase3Props) { onChange={onTypeChange} items={[ { value: 'all', label: `All ${numberFormatter(totalRecords)}` }, - { value: 'valid', label: `Valid ${numberFormatter(invalidRecords)}` }, - { value: 'invalid', label: `Invalid ${numberFormatter(totalRecords - invalidRecords)}` }, + { value: 'valid', label: `Valid ${numberFormatter(totalRecords - invalidRecords)}` }, + { value: 'invalid', label: `Invalid ${numberFormatter(invalidRecords)}` }, ]} />