MCPcopy Create free account
hub / github.com/LumePart/Explo / wizardStep2

Function wizardStep2

src/web/frontend/src/lib/api.js:94–101  ·  view source on GitHub ↗
(body)

Source from the content-addressed store, hash-verified

92}
93
94export async function wizardStep2(body) {
95 const res = await apiFetch('/api/ui/wizard/step2', {
96 method: 'POST',
97 headers: { 'Content-Type': 'application/json' },
98 body: JSON.stringify(body),
99 })
100 if (!res.ok) throw new Error(await res.text())
101}
102
103export async function wizardStep3(body) {
104 const res = await apiFetch('/api/ui/wizard/step3', {

Callers 1

handleStep2Function · 0.90

Calls 1

apiFetchFunction · 0.85

Tested by

no test coverage detected