'reset: true' in form resets form data in thankyou page

Like the title says, my contact form has the parameter

process:
   reset: true

This seems to prevent the submitted form data from showing in the thankyou page.

Removing reset: true or setting to false allows the data to be posted.

Is there a workaround for this?

I didn’t read the docs carefully enough:

By default, the form is not cleared after the submit. So if you don’t have a display action and the user is sent back to the form page, it’s still filled with the data entered. If you want to avoid this, add a reset action:

Going to a thankyou page is a display action, therefore reset is not appropriate.

1 Like