From 27108b9080b7cf559cc48bd9a1112b4e29321b08 Mon Sep 17 00:00:00 2001 From: justin Date: Wed, 29 Apr 2026 01:28:40 -0500 Subject: [PATCH] Change prefill notice to 'public sources' instead of 'FCC records' Co-Authored-By: Claude Opus 4.6 (1M context) --- site/src/components/intake/Wizard.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/intake/Wizard.astro b/site/src/components/intake/Wizard.astro index 6f1248d..88ec5f9 100644 --- a/site/src/components/intake/Wizard.astro +++ b/site/src/components/intake/Wizard.astro @@ -401,7 +401,7 @@ const STEP_LABELS: Record = { if (activeStep && !activeStep.querySelector(".pw-prefill-notice")) { const notice = document.createElement("div"); notice.className = "pw-prefill-notice"; - notice.innerHTML = "We've pre-filled this from your FCC records. Please review carefully and correct any information that is inaccurate or outdated."; + notice.innerHTML = "We've pre-filled this from public sources. Please review carefully and correct any information that is inaccurate or outdated."; activeStep.prepend(notice); } }