Fix guest mobile booking step progression

This commit is contained in:
Jeppe B
2026-02-27 02:16:48 +01:00
parent 6c2b2b7d96
commit 1dae51a240
@@ -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) {