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)}` }, ]} />