From 5a07335b2f6c1232237e477d15aa8607a5a14a7a Mon Sep 17 00:00:00 2001 From: justin Date: Wed, 20 May 2026 16:18:30 -0500 Subject: [PATCH] Fix: remove escaped backticks that broke compliance checker JS The lead capture template literal used \` (escaped backtick) which passed through Astro's compiler literally, creating an invalid JS token that prevented the entire script from executing. Co-Authored-By: Claude Opus 4.6 (1M context) --- site/src/pages/tools/fcc-compliance-check.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/src/pages/tools/fcc-compliance-check.astro b/site/src/pages/tools/fcc-compliance-check.astro index 2c41d24..bbe306f 100644 --- a/site/src/pages/tools/fcc-compliance-check.astro +++ b/site/src/pages/tools/fcc-compliance-check.astro @@ -915,10 +915,10 @@ import Base from "../../layouts/Base.astro"; `; // Lead capture for people not ready to buy - html += \`
+ html += `

Not ready yet? Get your compliance report emailed to you.

-

We'll send a detailed breakdown of what needs to be fixed — free, no obligation.

+

We will send a detailed breakdown of what needs to be fixed - free, no obligation.

-
\``; +
`; ctaContent.innerHTML = html; paymentIcons.classList.remove("hidden");