Change prefill notice to 'public sources' instead of 'FCC records'

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
justin 2026-04-29 01:28:40 -05:00
parent 1f87ad4554
commit 27108b9080

View file

@ -401,7 +401,7 @@ const STEP_LABELS: Record<string, string> = {
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);
}
}