Feature/product platform foundation v0.62 #1

Merged
robbond merged 683 commits from feature/product-platform-foundation-v0.62 into feature/emergent-unknowns-v0.5 2026-09-09 07:58:20 +01:00
Showing only changes of commit 6c033e1f44 - Show all commits
+1 -1
View File
@@ -204,7 +204,7 @@ export async function mockFetch(url, options) {
if (url.indexOf("/api/cases/start") === 0 && options && options.method === "POST") {
var r1 = await handleStartCase(body && body.scenario);
return new Response(JSON.stringify(r1.data), { status: r1.data.success ? 200 : 500, headers:{ "Content-Type":"application/json" } });
return new Response(JSON.stringify(r1.data), { status: r1.success ? 200 : 500, headers:{ "Content-Type":"application/json" } });
}
if (url.indexOf("/api/cases/update") === 0 && options && options.method === "POST") {