Skip to content

Commit

Permalink
fix(j-s): Completed cases filter
Browse files Browse the repository at this point in the history
  • Loading branch information
unakb committed Sep 17, 2024
1 parent e8480d9 commit 7d481f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/judicial-system/web/src/routes/Shared/Cases/Cases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ export const Cases: FC = () => {
(c) =>
!activeCases.includes(c) &&
!casesAwaitingAssignment.includes(c) &&
!casesAwaitingReview.includes(c),
!casesAwaitingReview.includes(c) &&
!casesAwaitingConfirmation.includes(c),
)

return [
Expand Down

0 comments on commit 7d481f6

Please sign in to comment.