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:
parent
af65fca709
commit
98a4c90e3a
2 changed files with 42 additions and 1 deletions
|
|
@ -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 = {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue