Skip to content

Commit

Permalink
Merge pull request #1715 from wittejm/bugfix-paperwork-on-partially-e…
Browse files Browse the repository at this point in the history
…ligible-case

Match header change to properly detect partially eligible case
  • Loading branch information
wittejm authored Nov 16, 2023
2 parents 5ca73b3 + 2d479ff commit aeb57fd
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 default function RecordSummary() {
(x) => x[0] === "Eligible Now"
);
const chargesEligibleOnIneligible = groupedCharges?.filter(
(x) => x[0] === "Eligible on case with Ineligible charge"
(x) => x[0] === "Eligible Now on case with Ineligible charge"
);
if (
(chargesEligibleNow[0] && chargesEligibleNow[0][1].length > 0) ||
Expand Down

0 comments on commit aeb57fd

Please sign in to comment.