From 27d95ed752587b8301dd2072548779994da4e747 Mon Sep 17 00:00:00 2001 From: ff Date: Mon, 8 Jun 2026 23:25:02 -0400 Subject: [PATCH] fix: add United Healthcare SCO aliases so AI chat routes to UnitedDH worker "United Healthcare SCO" does not contain the substring "united sco" so deriveSiteKey was falling through to the MH default. Add exact and prefix aliases so any United Healthcare variant maps to UNITED_SCO. Co-Authored-By: Claude Sonnet 4.6 --- apps/Backend/src/data/insuranceAliases.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/Backend/src/data/insuranceAliases.json b/apps/Backend/src/data/insuranceAliases.json index b9a454c1..e65c0a8e 100644 --- a/apps/Backend/src/data/insuranceAliases.json +++ b/apps/Backend/src/data/insuranceAliases.json @@ -21,6 +21,8 @@ { "keyword": "tuftssco", "siteKey": "TUFTS_SCO" }, { "keyword": "united healthone sco", "siteKey": "UNITED_SCO" }, + { "keyword": "united healthcare sco", "siteKey": "UNITED_SCO" }, + { "keyword": "united healthcare", "siteKey": "UNITED_SCO" }, { "keyword": "united sco", "siteKey": "UNITED_SCO" }, { "keyword": "dentalhub", "siteKey": "UNITED_SCO" }, { "keyword": "united_sco", "siteKey": "UNITED_SCO" },