Last updated 8 months ago
return Object.fromEntries( Array.from(StudioForm[StudioForm.keys[0]].data.form.entries()), );
My (Leon's) favourite code snippet for console logging your form data to see if everything is working correctly without relying on native webflow submissions:
StudioForm[StudioForm.keys[0]].data.form.forEach((value, key) => { console.log(key, ": ", value); });
[While this is being written...]