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:
parent
983ba7c2e4
commit
0bb2707904
1 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Reference in a new issue