Skip to content

Commit d62dbc6

Browse files
authored
Update ProjectSheetFlow.tsx (#235)
1 parent 1fae73e commit d62dbc6

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

components/project/ProjectSheetFlow.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
import React, { useState } from 'react';
44
import BoundlessSheet from '../sheet/boundless-sheet';
55
import { Stepper } from '../stepper';
6-
// import { MilestoneReview } from './';
76
import Initialize from './Initialize';
87
import ValidationFlow from './ValidationFlow';
98
import LaunchCampaignFlow from './LaunchCampaignFlow';
109
import { useProjectSheetStore } from '@/lib/stores/project-sheet-store';
11-
// import ValidationFlow from './ValidationFlow';
1210

1311
type 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();

0 commit comments

Comments
 (0)