@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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/basic-edu
2
2
 
3
+ ## 1.10.33
4
+
5
+ ### Patch Changes
6
+
7
+ - aa68481: Fix updateStatusById
8
+
3
9
  ## 1.10.32
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -5643,6 +5643,9 @@ function useEnrollmentService() {
5643
5643
  enrollment.seniorHighInfo.strand = enrollment.seniorHighInfo?.strand?.toString();
5644
5644
  }
5645
5645
  enrollment.status = "active";
5646
+ enrollment.learnerInfo.birthDate = enrollment.learnerInfo.birthDate ? new Date(enrollment.learnerInfo.birthDate).toLocaleDateString(
5647
+ "en-GB"
5648
+ ) : "";
5646
5649
  await addLearner(enrollment, session);
5647
5650
  }
5648
5651
  const programScreening = await getByApplicantId(_id);