From 3e18fd9dbd1f346f5c17fa398ffa527aa54e15cd Mon Sep 17 00:00:00 2001 From: soletsdev Date: Thu, 2 Jan 2025 08:47:31 -0800 Subject: [PATCH] bug fix for registration 5yr + SNE not showing the correct text --- .../src/store/lookupCertification.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/store/lookupCertification.ts b/src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/store/lookupCertification.ts index 36393801a..769c1ec6d 100644 --- a/src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/store/lookupCertification.ts +++ b/src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/store/lookupCertification.ts @@ -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)"; }