Fix guest mobile booking step progression
This commit is contained in:
@@ -524,7 +524,8 @@ const onMobileNext = () => {
|
||||
mobileStep.value = 3;
|
||||
return;
|
||||
}
|
||||
if (mobileStep.value === 3 && completeBasket.value.length > 0) {
|
||||
// Guests don't have access to product APIs, so step 3 should allow proceeding without basket items.
|
||||
if (mobileStep.value === 3 && (guestMode.value || completeBasket.value.length > 0)) {
|
||||
mobileStep.value = 4;
|
||||
// Encourage selecting a time immediately
|
||||
if (!isDateTimeInput.value) {
|
||||
|
||||
Reference in New Issue
Block a user