From 0bb270790427fedf4b582bd7e85919f02beb6d90 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Tue, 3 Mar 2026 16:39:46 -0800 Subject: [PATCH] Skip header image step when no auto-detected header For URL imports (Toast, Grubhub, etc.) there's no header image to show, so skip straight from business info to categories instead of showing an empty "Choose Image / Skip" prompt. Co-Authored-By: Claude Opus 4.6 --- portal/setup-wizard.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/portal/setup-wizard.html b/portal/setup-wizard.html index 13ae33a..6431644 100644 --- a/portal/setup-wizard.html +++ b/portal/setup-wizard.html @@ -2205,8 +2205,12 @@ hoursSchedule: hoursSchedule // Send the structured schedule instead of the raw hours string }; - // Move to header image step - showHeaderImageStep(); + // Move to header image step - skip if no auto-detected header (URL imports) + if (config.headerImageFile) { + showHeaderImageStep(); + } else { + showCategoriesStep(); + } } // Header Image step - between business info and categories