Skip to content

Commit

Permalink
fix(j-s): Cancelled Unassigned Indictment (#15910)
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
2 people authored and jonnigs committed Sep 12, 2024
1 parent 44ee464 commit ba04a71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/judicial-system/web/src/routes/Shared/Cases/Cases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const Cases: FC = () => {
const casesAwaitingAssignment = filterCases(
(c) =>
isIndictmentCase(c.type) &&
c.state !== CaseState.WAITING_FOR_CANCELLATION &&
(c.state === CaseState.SUBMITTED || c.state === CaseState.RECEIVED) &&
!c.judge,
)

Expand Down

0 comments on commit ba04a71

Please sign in to comment.