Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bergomi02 committed Sep 16, 2024
1 parent 865295d commit 25d1ff0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class RegulatoryFormState extends AbstractFormState<EnrolmentRegulatoryFo
if (certifications.length) {
certifications.forEach((c: CollegeCertification) => this.addCollegeCertification(c));
}
if (unlistedCertifications.length) {
if (unlistedCertifications && unlistedCertifications.length) {
unlistedCertifications.forEach((c: UnlistedCertification) => this.addUnlistedCertification(c));
}
if (enrolleeDeviceProviders && enrolleeDeviceProviders.length) {
Expand Down

0 comments on commit 25d1ff0

Please sign in to comment.