Fix BDC CTA: add red (voice+broadband) option at higher price

When both voice and broadband are selected, BDC status is red but
the CTA had no case for red — nothing was added to the order.
Now: red = "BDC Broadband + Voice Filing" at $349 (both filings),
yellow = single filing at $199 (unchanged).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
justin 2026-05-02 09:24:53 -05:00
parent 95749b138c
commit 1d4d562c0f

View file

@ -794,7 +794,10 @@ import Base from "../../layouts/Base.astro";
}
break;
case "bdc_filing":
if (s === "yellow") {
if (s === "red") {
// Both broadband + voice filings
services.push({ id: "bdc_filing", name: "BDC Broadband + Voice Filing", desc: "both filings", price: 349 });
} else if (s === "yellow") {
services.push({ id: "bdc_filing", name: "BDC / Form 477 Filing", desc: "", price: 199 });
}
break;