diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 10ebc609..808c27a7 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -207,6 +207,18 @@ export default { }, async forwardButtonAction() { await useMainStore().savePaymentMethodChoice(this.paymentMethod); + + if (this.paymentMethod === paymentMethods.PAY_AT_TIME_OF_SERVICE) { + this.$router.navigate( + this.navigationScenarios.CLICKED_FORWARD, + this.$route + ); + } else { + this.$router.navigate( + this.navigationScenarios.CLICKED_PAY_NOW, + this.$route + ); + } } } };