diff --git a/apps/minifront/src/state/helpers.ts b/apps/minifront/src/state/helpers.ts index 016ef4e6c9..9bb4963936 100644 --- a/apps/minifront/src/state/helpers.ts +++ b/apps/minifront/src/state/helpers.ts @@ -104,7 +104,8 @@ const build = async ( status?: (AuthorizeAndBuildResponse | WitnessAndBuildResponse)['status'], ) => void, ) => { - for await (const { status } of buildFn(req)) { + // Setting timeout for 10mins given slower machines can take time to build + for await (const { status } of buildFn(req, { timeoutMs: 600_000 })) { onStatusUpdate(status); switch (status.case) {