@eeplatform/basic-edu 1.10.32 → 1.10.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -5574,6 +5574,9 @@ function useEnrollmentService() {
5574
5574
  enrollment.seniorHighInfo.strand = enrollment.seniorHighInfo?.strand?.toString();
5575
5575
  }
5576
5576
  enrollment.status = "active";
5577
+ enrollment.learnerInfo.birthDate = enrollment.learnerInfo.birthDate ? new Date(enrollment.learnerInfo.birthDate).toLocaleDateString(
5578
+ "en-GB"
5579
+ ) : "";
5577
5580
  await addLearner(enrollment, session);
5578
5581
  }
5579
5582
  const programScreening = await getByApplicantId(_id);