Pre-fill intake wizard from order data + FRN, use quick mode for FCC lookup

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
justin 2026-04-28 04:46:09 -05:00
parent af65fca709
commit 98a4c90e3a
2 changed files with 42 additions and 1 deletions

View file

@ -313,7 +313,7 @@
async function autoFillFromFRN(frn: string) {
try {
const API = (window as any).__PW_API || "";
const r = await fetch(`${API}/api/v1/fcc/lookup?frn=${frn}`);
const r = await fetch(`${API}/api/v1/fcc/lookup?frn=${frn}&quick=1`);
if (!r.ok) return;
const d = await r.json();
const entity: any = {};