We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21cb4a4 commit 1fd93ebCopy full SHA for 1fd93eb
components/Recaptcha.vue
@@ -82,7 +82,15 @@
82
})
83
function submit_recaptcha() {
84
$fetch(
85
- `/.netlify/functions/recaptcha?name=${name.value}&email=${email.value}&launch=${launch.value}`,
+ `/.netlify/functions/recaptcha`,
86
+ {
87
+ method: "POST",
88
+ body: {
89
+ name: name.value,
90
+ email: email.value,
91
+ launch: launch.value,
92
+ },
93
94
{
95
onResponse({ response }) {
96
if (response.ok) {
0 commit comments