File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33import React , { useState } from 'react' ;
44import BoundlessSheet from '../sheet/boundless-sheet' ;
55import { Stepper } from '../stepper' ;
6- // import { MilestoneReview } from './';
76import Initialize from './Initialize' ;
87import ValidationFlow from './ValidationFlow' ;
98import LaunchCampaignFlow from './LaunchCampaignFlow' ;
109import { useProjectSheetStore } from '@/lib/stores/project-sheet-store' ;
11- // import ValidationFlow from './ValidationFlow';
1210
1311type StepState = 'pending' | 'active' | 'completed' ;
1412
@@ -47,7 +45,6 @@ const ProjectSheetFlow: React.FC<ProjectSheetFlowProps> = ({
4745 open,
4846 onOpenChange,
4947} ) => {
50- // Note: sub-steps handled internally by Initialize and ValidationFlow
5148 const [ steps , setSteps ] = useState < Step [ ] > ( initialSteps ) ;
5249 const [ currentStep , setCurrentStep ] = useState <
5350 'initialize' | 'validate' | 'launch'
@@ -105,8 +102,6 @@ const ProjectSheetFlow: React.FC<ProjectSheetFlowProps> = ({
105102 ) ;
106103 } ;
107104
108- // Milestone handling moved inside Initialize; no-op here
109-
110105 const handleClose = ( ) => {
111106 onOpenChange ( false ) ;
112107 sheet . reset ( ) ;
You can’t perform that action at this time.
0 commit comments