CSR-1072
prettier
This commit is contained in:
parent
4e1caf8559
commit
3cfd9a1ca2
4 changed files with 11 additions and 10 deletions
|
|
@ -358,9 +358,7 @@ export default {
|
|||
customer.emailAddress
|
||||
);
|
||||
|
||||
return (
|
||||
serviceLocationReqs && isInsuranceSet && scheduleReqs && customerReqs
|
||||
);
|
||||
return serviceLocationReqs && isInsuranceSet && scheduleReqs && customerReqs;
|
||||
},
|
||||
getPaymentMethodFromStore() {
|
||||
const piaType = store.getters.order.payment.piaType;
|
||||
|
|
|
|||
|
|
@ -351,8 +351,9 @@ export default {
|
|||
var isPremiumAppointment = false;
|
||||
if (supportingItems) {
|
||||
isPremiumAppointment =
|
||||
!!supportingItems.filter((lineItem) => lineItem.partType === PREMIUM_FEE_PART_TYPE)
|
||||
.length > 0;
|
||||
!!supportingItems.filter(
|
||||
(lineItem) => lineItem.partType === PREMIUM_FEE_PART_TYPE
|
||||
).length > 0;
|
||||
}
|
||||
|
||||
const selectedTimeSlotInfo = {
|
||||
|
|
|
|||
|
|
@ -133,7 +133,9 @@ const routes = [
|
|||
.components.default();
|
||||
|
||||
if (!arePagePrerequisitesValid(nextComponent)) {
|
||||
console.log("Page Prereqs not valid for next component: " + nextComponent.default.name);
|
||||
console.log(
|
||||
"Page Prereqs not valid for next component: " + nextComponent.default.name
|
||||
);
|
||||
GoToFunnelStartOn404(next);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue