From 0f36874435dec6896a8a5f785a4396afd9816445 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Thu, 15 Jan 2026 15:31:09 -0800 Subject: [PATCH] Move uncertain modifier assignment step after items review Changed wizard flow so uncertain modifiers are presented AFTER user has reviewed all items, not before. This makes more sense because: - User can see what items exist before deciding modifier assignments - User understands their menu structure before making decisions - More informed decisions about which categories need which modifiers New flow: 1. Business info 2. Categories 3. Modifiers (select which to keep) 4. Items (review and select) 5. Uncertain modifiers (assign to categories) <- moved here 6. Final review and save Co-Authored-By: Claude Sonnet 4.5 --- portal/setup-wizard.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/portal/setup-wizard.html b/portal/setup-wizard.html index a56bc13..f361fd8 100644 --- a/portal/setup-wizard.html +++ b/portal/setup-wizard.html @@ -1481,8 +1481,8 @@ config.extractedData.modifiers = updatedModifiers; - // Check if there are uncertain modifiers that need category assignment - showUncertainModifiersStep(); + // Go to items step (uncertain modifiers will be handled after items) + showItemsStep(); } // New step: Handle uncertain modifier assignments @@ -1676,7 +1676,8 @@ checkedIds.has(item.id || i.toString()) ); - showFinalStep(); + // Now that user has seen items, ask about uncertain modifiers + showUncertainModifiersStep(); } // Step 5: Final Review