From 1d4d562c0fa979df4c30d469915cbbf73a27cbc4 Mon Sep 17 00:00:00 2001 From: justin Date: Sat, 2 May 2026 09:24:53 -0500 Subject: [PATCH] Fix BDC CTA: add red (voice+broadband) option at higher price MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- site/src/pages/tools/fcc-compliance-check.astro | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/site/src/pages/tools/fcc-compliance-check.astro b/site/src/pages/tools/fcc-compliance-check.astro index b79acac..ef43861 100644 --- a/site/src/pages/tools/fcc-compliance-check.astro +++ b/site/src/pages/tools/fcc-compliance-check.astro @@ -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;