@altimateai/ui-components 0.0.51-beta.2 → 0.0.52-beta.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.
- package/dist/CoachForm.js +2 -2
- package/package.json +1 -1
package/dist/CoachForm.js
CHANGED
|
@@ -50156,13 +50156,13 @@ class Vie {
|
|
|
50156
50156
|
}
|
|
50157
50157
|
async makeRequest(t, n, r) {
|
|
50158
50158
|
const i = await fetch(t, {
|
|
50159
|
+
...r,
|
|
50159
50160
|
method: "POST",
|
|
50160
50161
|
headers: {
|
|
50161
50162
|
"Content-Type": "application/json",
|
|
50162
50163
|
...r == null ? void 0 : r.headers
|
|
50163
50164
|
},
|
|
50164
|
-
body: JSON.stringify(n)
|
|
50165
|
-
...r
|
|
50165
|
+
body: JSON.stringify(n)
|
|
50166
50166
|
});
|
|
50167
50167
|
if (!i.ok)
|
|
50168
50168
|
throw new Error(`Entity detection failed: ${i.statusText}`);
|