From face8ec38db2c8760b8bbd07124d9fa3320a88ad Mon Sep 17 00:00:00 2001 From: Michele Bigi Date: Thu, 10 Sep 2026 20:57:52 +0200 Subject: [PATCH] Include queued in ProjectStatus so the replace-files button type-checks. Co-authored-by: Cursor --- frontend/src/lib/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/lib/types.ts b/frontend/src/lib/types.ts index 1ae900e..f98e801 100644 --- a/frontend/src/lib/types.ts +++ b/frontend/src/lib/types.ts @@ -102,6 +102,7 @@ export interface BomSummaryRow { export type ProjectStatus = | "draft" + | "queued" | "running" | "complete" | "error"