(body)
| 92 | } |
| 93 | |
| 94 | export 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 | |
| 103 | export async function wizardStep3(body) { |
| 104 | const res = await apiFetch('/api/ui/wizard/step3', { |
no test coverage detected