Skip to content

Commit d080024

Browse files
committed
fixed store wizard total step count
1 parent 756d5a9 commit d080024

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src-tauri/src/cli/prompts.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,7 @@ fn select_features_interactive(
318318
.iter()
319319
.map(|f| {
320320
format!(
321-
"{} {} - {}",
322-
if f.optional { "[ ]" } else { "[*]" },
321+
"{} - {}",
323322
f.name,
324323
f.description.as_deref().unwrap_or("No description")
325324
)

src/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export const useAppStore = defineStore("app", {
137137
export const useWizardStore = defineStore("wizard", {
138138
state: () => ({
139139
currentStep: 1,
140-
totalSteps: 8,
140+
totalSteps: 9,
141141
wizardData: {
142142
// Step 1: Prerequisites
143143
prerequisites: {

0 commit comments

Comments
 (0)