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 <cursoragent@cursor.com>
This commit is contained in:
2026-08-28 03:00:36 +02:00
co-authored by Cursor
parent ed75aabaf0
commit 02d3cfdad7
+2
View File
@@ -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",
});