Skip to content

Commit

Permalink
fix(j-s): Completed cases filter (#16034)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
unakb and kodiakhq[bot] authored Sep 19, 2024
1 parent 3594b6d commit e9e937a
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 e9e937a

Please sign in to comment.