Skip to content

Commit 98cd3ed

Browse files
committed
fix(preflight): temporarily disable project name check due to persistence bug
1 parent 5df19c5 commit 98cd3ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/workflows/preflight.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ export async function checkOnboardingRequired(options: { cwd?: string } = {}): P
7373
const hasConditionGroups = !!(template.conditionGroups && template.conditionGroups.length > 0);
7474
const needsTrackSelection = hasTracks && !selectedTrack;
7575
const needsConditionsSelection = hasConditionGroups && !conditionsSelected;
76-
const needsProjectName = !existingProjectName;
76+
// TODO: Re-enable project name check - temporarily disabled due to persistence bug
77+
const needsProjectName = false; // !existingProjectName;
7778

7879
// Controller is now pre-specified via controller() function - no selection needed
7980
const needsControllerSelection = false;

0 commit comments

Comments
 (0)