strapi / strapi-starter-next-corporate

Next.js starter for creating a corporate site with Strapi.
https://strapi-starter-next-corporate.vercel.app
MIT License
346 stars 95 forks source link

Strapi V4 form changes (fix error with form submission) #78

Open hwr7dd opened 2 years ago

hwr7dd commented 2 years ago

Hey guys,

Strapi v4 requires post requests to be wrapped in with "data". So in the /sections/lead-form.js edit this section: body: JSON.stringify({ email: values.email, location: data.location } body: JSON.stringify({data:{ email: values.email, location: data.location }}