diff --git a/apps/app/src/components/layout/project-setup-dialog.tsx b/apps/app/src/components/layout/project-setup-dialog.tsx index 4b4ce15e..3683b5cc 100644 --- a/apps/app/src/components/layout/project-setup-dialog.tsx +++ b/apps/app/src/components/layout/project-setup-dialog.tsx @@ -39,6 +39,7 @@ export function ProjectSetupDialog({ { + onOpenChange(open); if (!open && !isCreatingSpec) { onSkip(); } diff --git a/apps/app/src/components/views/board-view.tsx b/apps/app/src/components/views/board-view.tsx index dffbc417..dc8acfca 100644 --- a/apps/app/src/components/views/board-view.tsx +++ b/apps/app/src/components/views/board-view.tsx @@ -114,9 +114,21 @@ type ColumnId = Feature["status"]; const COLUMNS: { id: ColumnId; title: string; colorClass: string }[] = [ { id: "backlog", title: "Backlog", colorClass: "bg-[var(--status-backlog)]" }, - { id: "in_progress", title: "In Progress", colorClass: "bg-[var(--status-in-progress)]" }, - { id: "waiting_approval", title: "Waiting Approval", colorClass: "bg-[var(--status-waiting)]" }, - { id: "verified", title: "Verified", colorClass: "bg-[var(--status-success)]" }, + { + id: "in_progress", + title: "In Progress", + colorClass: "bg-[var(--status-in-progress)]", + }, + { + id: "waiting_approval", + title: "Waiting Approval", + colorClass: "bg-[var(--status-waiting)]", + }, + { + id: "verified", + title: "Verified", + colorClass: "bg-[var(--status-success)]", + }, ]; type ModelOption = { @@ -2238,10 +2250,12 @@ export function BoardView() { })} - + {activeFeature && (