Skip to content

Commit

Permalink
fix: filter by status
Browse files Browse the repository at this point in the history
  • Loading branch information
evilpeach committed Aug 20, 2024
1 parent 5fd45f3 commit 54f5f62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const MyModuleVerificationsTable = observer(() => {
)
.filter((task) => {
if (statuses.length === 0) return true;
return statuses[0] === task.status;
return statuses.includes(task.status);
}),
[data, keyword, statuses]
);
Expand Down

0 comments on commit 54f5f62

Please sign in to comment.