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:
parent
95749b138c
commit
1d4d562c0f
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue