You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If verification successful, forward the form data to Web3Forms
59
59
console.log('Forwarding to Web3Forms...');
60
+
console.log('All received form data:',Array.from(formData.entries()).map(([key,value])=>`${key}: ${value.substring(0,50)}${value.length>50 ? '...' : ''}`));
60
61
61
62
// Create clean form data for Web3Forms (only include form fields, not tokens)
0 commit comments