From 1a7c342ac929bb6a8ae85eba5b10c928a7739cd7 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Thu, 12 Feb 2026 20:36:43 -0800 Subject: [PATCH] Remove manual image upload step - use automatic matching --- portal/setup-wizard.html | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/portal/setup-wizard.html b/portal/setup-wizard.html index d76a2d0..875ef18 100644 --- a/portal/setup-wizard.html +++ b/portal/setup-wizard.html @@ -1348,11 +1348,8 @@ // Remove loading message and start conversation flow document.getElementById('conversation').innerHTML = ''; - // If we have image mappings from the HTML, show image matching step first - if (config.imageMappings.length > 0) { - showImageMatchingStep(); - } else if (config.businessId && config.menuId) { - // In add-menu mode, skip business info and header + // In add-menu mode, skip business info and header + if (config.businessId && config.menuId) { showCategoriesStep(); } else { showBusinessInfoStep(); @@ -1448,11 +1445,8 @@ // Remove loading message and start conversation flow document.getElementById('conversation').innerHTML = ''; - // If we have image mappings from the HTML, show image matching step first - if (config.imageMappings.length > 0) { - showImageMatchingStep(); - } else if (config.businessId && config.menuId) { - // In add-menu mode, skip business info and header + // In add-menu mode, skip business info and header + if (config.businessId && config.menuId) { showCategoriesStep(); } else { showBusinessInfoStep();