Skip to content

Commit

Permalink
Filter all duplicates that are not pending, not just dismissed.
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasva82 committed Sep 27, 2024
1 parent 628fe9d commit b770ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/organize/[orgId]/people/duplicates/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const DuplicatesPage: PageWithLayout = () => {
return null;
}

const filteredList = list.filter((cluster) => !cluster.dismissed);
const filteredList = list.filter((cluster) => cluster.status == 'pending');

return (
<>
Expand Down

0 comments on commit b770ef5

Please sign in to comment.