Skip to content

Commit

Permalink
ADJUST1-384 Fix to edit remand bug. (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldlharper authored Jan 19, 2024
1 parent 355504a commit 469b3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/model/remandChangeModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class RemandChangeModel {
}

private remandRelatedValidation() {
return this.calculatedUnusedDeductions.validationMessages.filter(it =>
return (this.calculatedUnusedDeductions?.validationMessages || []).filter(it =>
this.remandRelatedValidationCodes.includes(it.code),
)
}
Expand Down

0 comments on commit 469b3de

Please sign in to comment.