fix post data submission in delete

This commit is contained in:
2023-01-24 20:04:31 +10:00
parent f888c4a718
commit 5737757aeb

View File

@@ -98,8 +98,10 @@ const submit = async () => {
const captcha = await executeRecaptcha("submit");
await axios.delete("subscriptions", {
email: formData.email.value,
captcha_token: captcha,
data: {
email: formData.email.value,
captcha_token: captcha,
},
});
formDone.value = true;