From 02d3cfdad79ea3d5b153969c7950680607536353 Mon Sep 17 00:00:00 2001 From: Michele Bigi Date: Fri, 28 Aug 2026 03:00:36 +0200 Subject: [PATCH] Restore startPipeline after inserting reprocessPipeline. The function header was dropped, which left a return at module scope and broke the Next.js build. Co-authored-by: Cursor --- frontend/src/lib/api.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts index 6201350..1a788fa 100644 --- a/frontend/src/lib/api.ts +++ b/frontend/src/lib/api.ts @@ -455,6 +455,8 @@ export async function reprocessPipeline( } return res.json(); } + +export async function startPipeline(projectId: string) { const res = await authFetch(`${BASE}/api/pipeline/${projectId}/start`, { method: "POST", });