Skip to content

Commit

Permalink
Merge pull request #797 from bcgov/bugs/ecer-3973
Browse files Browse the repository at this point in the history
bug fix for registration 5yr + SNE not showing the correct text
  • Loading branch information
SoLetsDev authored Jan 2, 2025
2 parents f9513c0 + 3e18fd9 commit e889b95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const useLookupCertificationStore = defineStore("lookupCertification", {
return "ECE Five Year with Infant and Toddler Educator (ITE)";
}

if (levels.some((level) => level.type === "ECE 5 YR") && levels.some((level) => level.type === "ITE")) {
if (levels.some((level) => level.type === "ECE 5 YR") && levels.some((level) => level.type === "SNE")) {
return "ECE Five Year with Special Needs Educator (SNE)";
}

Expand Down

0 comments on commit e889b95

Please sign in to comment.