Skip to content

Commit

Permalink
feat: Formatted records count in title of delete message (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
chavda-bhavik authored May 20, 2024
2 parents 90fc5a2 + f0bc949 commit dff9109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/widget/src/hooks/Phase3/usePhase3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ export function usePhase3({ onNext }: IUsePhase3Props) {
message: `Successfully deleted ${numberFormatter(vars[1])} valid and ${numberFormatter(
vars[2]
)} invalid records. Total ${numberFormatter(vars[1] + vars[2])} records are deleted.`,
title: `${vars[1] + vars[2]} records deleted.`,
title: `${numberFormatter(vars[1] + vars[2])} records deleted.`,
});
},
});
Expand Down

0 comments on commit dff9109

Please sign in to comment.