diff --git a/web/frontend/src/api/run.ts b/web/frontend/src/api/run.ts index 34f2514..1800420 100644 --- a/web/frontend/src/api/run.ts +++ b/web/frontend/src/api/run.ts @@ -27,7 +27,7 @@ export interface ActiveContract { } export function runPipeline(req: RunRequest) { - return client.post('/run', req).then((r) => r.data) + return client.post('/run', req, { timeout: 60_000 }).then((r) => r.data) } export interface RunRangeRequest {