From 762bdf042572d5af4f869e59113917a2f5654469 Mon Sep 17 00:00:00 2001 From: Mark Bateman Date: Wed, 11 Feb 2026 18:29:51 +0000 Subject: [PATCH] pneumococcal routing bug fix --- app/routes/record-vaccinations.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/routes/record-vaccinations.js b/app/routes/record-vaccinations.js index c7105840..fe163875 100644 --- a/app/routes/record-vaccinations.js +++ b/app/routes/record-vaccinations.js @@ -861,8 +861,7 @@ module.exports = router => { redirectPath = "/record-vaccinations/add-batch" } else if (!vaccineBatch) { redirectPath = "/record-vaccinations/batch?showError=yes" - //} else if (["COVID-19", "flu", "flu (London service)", "RSV", "pneumococcal", "3-in-1 teenage booster", "HPV", "MenACWY", "MenB", "shingles"].includes(data.vaccine)) { - } else if (["COVID-19", "RSV", "pneumococcal", "3-in-1 teenage booster", "HPV", "MenACWY", "shingles"].includes(data.vaccine)) { + } else if (["COVID-19", "RSV", "3-in-1 teenage booster", "HPV", "MenACWY", "shingles"].includes(data.vaccine)) { redirectPath = "/record-vaccinations/eligibility" } else if (data.vaccine === "pertussis") { redirectPath = "/record-vaccinations/patient-estimated-due-date"