diff --git a/site/src/pages/tools/fcc-compliance-check.astro b/site/src/pages/tools/fcc-compliance-check.astro index 65c6c1e..479b657 100644 --- a/site/src/pages/tools/fcc-compliance-check.astro +++ b/site/src/pages/tools/fcc-compliance-check.astro @@ -490,10 +490,13 @@ import Base from "../../layouts/Base.astro"; if (check.due_date) inner += `

Due: ${check.due_date}

`; if (check.detail) inner += `

${check.detail}

`; + // Entity name for contextual questions + const eName = (data.entity_name || "").toUpperCase() || "THIS ENTITY"; + // RMD special — ask if they provide voice services when RMD not found if (check.id === "rmd_filing" && status === "red" && (check.detail || "").includes("Not found")) { inner += `
-

Do you provide any voice services?

+

Does ${eName} provide any voice services?

@@ -504,11 +507,11 @@ import Base from "../../layouts/Base.astro"; // 499-A special — ask qualifying questions when past due if (check.id === "form_499a" && (status === "red" || status === "yellow")) { inner += `
-

Did you bill customers for voice or data telecom services during the overdue filing period(s)?

+

Did ${eName} bill customers for voice or data telecom services during the overdue filing period(s)?

- - - + + +
`; } @@ -516,7 +519,7 @@ import Base from "../../layouts/Base.astro"; // BDC special if (check.id === "bdc_filing" && status === "unknown") { inner += `
-

Do you provide broadband internet access?

+

Does ${eName} provide broadband internet access?

@@ -613,7 +616,7 @@ import Base from "../../layouts/Base.astro";

${check.label}

${check.detail}

-

You had telecom revenue — filing is required for each missed year.

+

${eName} had telecom revenue — filing is required for each missed year.

`; } else if (action === "zero") {