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 <noreply@anthropic.com>
This commit is contained in:
John Mizerek 2026-03-03 16:39:46 -08:00
parent 983ba7c2e4
commit 0bb2707904

View file

@ -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