fix: update ProjectSetupDialog to correctly handle open state and improve BoardView layout

- Added missing onOpenChange call in ProjectSetupDialog to ensure proper state management.
- Reformatted the COLUMNS array in BoardView for improved readability and consistency.
- Adjusted DragOverlay component's formatting for better code clarity.
This commit is contained in:
Cody Seibert
2025-12-15 01:13:37 -05:00
parent 2c8add3b54
commit 25b1789b0a
2 changed files with 22 additions and 7 deletions

View File

@@ -39,6 +39,7 @@ export function ProjectSetupDialog({
<Dialog
open={open}
onOpenChange={(open) => {
onOpenChange(open);
if (!open && !isCreatingSpec) {
onSkip();
}