We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5df19c5 commit 98cd3edCopy full SHA for 98cd3ed
src/workflows/preflight.ts
@@ -73,7 +73,8 @@ export async function checkOnboardingRequired(options: { cwd?: string } = {}): P
73
const hasConditionGroups = !!(template.conditionGroups && template.conditionGroups.length > 0);
74
const needsTrackSelection = hasTracks && !selectedTrack;
75
const needsConditionsSelection = hasConditionGroups && !conditionsSelected;
76
- const needsProjectName = !existingProjectName;
+ // TODO: Re-enable project name check - temporarily disabled due to persistence bug
77
+ const needsProjectName = false; // !existingProjectName;
78
79
// Controller is now pre-specified via controller() function - no selection needed
80
const needsControllerSelection = false;
0 commit comments