diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 439293dae..c28e53291 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -751,15 +751,15 @@ export default { customCtaCopy() { switch (this.paymentMethod) { case paymentMethods.PAY_NOW: - return "Continue to checkout"; + return "Continue"; // Before Heritage Parity it was "Continue to checkout" case paymentMethods.INSURANCE: - return "Continue to insurance"; + return "Continue"; // Before Heritage Parity it was "Continue to insurance" case paymentMethods.CREDIT_CARD: - return "Continue to checkout"; + return "Continue"; // Before Heritage Parity it was "Continue to checkout" case paymentMethods.PAYPAL: - return "Continue to Paypal"; + return "Continue"; // Before Heritage Parity it was "Continue to Paypal" case paymentMethods.AFTERPAY: - return "Continue to Afterpay"; + return "Continue"; // Before Heritage Parity it was "Continue to Afterpay" default: return null; } diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 62178994a..192273f49 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -1238,7 +1238,9 @@ export default { return store.getters.lineItems.supportingItems; }, updateFooterButtonText(timeSlotInfo) { - let navbarButtonText; + let navbarButtonText = "Continue"; + // Archiving the following in case we revert back from Heritage parity + /* if (!timeSlotInfo || !timeSlotInfo.timeSlot.date) { navbarButtonText = "Continue"; } else { @@ -1273,6 +1275,7 @@ export default { )}`; } } + */ this.$refs.navbar.updateButtonText(navbarButtonText); }, convertSelectedDateToShortMonthAndDay(selectedDate) {