@geode/opengeodeweb-front 9.13.0-rc.1 → 9.13.1-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -82,7 +82,15 @@
82
82
  })
83
83
  function submit_recaptcha() {
84
84
  $fetch(
85
- `/.netlify/functions/recaptcha?name=${name.value}&email=${email.value}&launch=${launch.value}`,
85
+ `/.netlify/functions/recaptcha`,
86
+ {
87
+ method: "POST",
88
+ body: {
89
+ name: name.value,
90
+ email: email.value,
91
+ launch: launch.value,
92
+ },
93
+ },
86
94
  {
87
95
  onResponse({ response }) {
88
96
  if (response.ok) {
package/package.json CHANGED
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
42
42
  "type": "module",
43
- "version": "9.13.0-rc.1",
43
+ "version": "9.13.1-rc.1",
44
44
  "main": "./nuxt.config.js",
45
45
  "dependencies": {
46
46
  "@geode/opengeodeweb-back": "next",