diff --git a/src/pages/QuickPurchase.tsx b/src/pages/QuickPurchase.tsx index ebd236f..9d68052 100644 --- a/src/pages/QuickPurchase.tsx +++ b/src/pages/QuickPurchase.tsx @@ -870,7 +870,8 @@ export default function QuickPurchase() { const contactKey = `lp_contact_${slug ?? ''}`; const [contactValue, setContactValue] = useState(() => { try { - return localStorage.getItem(contactKey) || ''; + const urlContact = new URLSearchParams(window.location.search).get('contact'); + return urlContact || localStorage.getItem(contactKey) || ''; } catch { return ''; }