fix: Add 'ready' status to FeatureStatusWithPipeline type union

This commit is contained in:
gsxdsm
2026-02-17 10:37:45 -08:00
parent f7b3f75163
commit efcdd849b9
2 changed files with 1 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ export type PipelineStatus = `pipeline_${string}`;
export type FeatureStatusWithPipeline =
| 'backlog'
| 'ready'
| 'in_progress'
| 'interrupted'
| 'waiting_approval'