diff --git a/src/layouts/estimate/estimate.vue b/src/layouts/estimate/estimate.vue index 720de9152..9d31083d6 100644 --- a/src/layouts/estimate/estimate.vue +++ b/src/layouts/estimate/estimate.vue @@ -205,15 +205,14 @@ export default { } this.displayNonServiceableZipAlert = false; - if (this.isRepair){ + if (this.isRepair) { return this.$router.navigateWithSaving( - this.navigationScenarios.CLICKED_FORWARD_WITH_NO_QUESTIONS, - this.$route + this.navigationScenarios.CLICKED_FORWARD_WITH_NO_QUESTIONS, + this.$route ); - } - else{ - // if we're skipping the vin-lookup but it's not a repair, we still need to get the parts - await this.navigateForwardWithSingleCarMatch(); + } else { + // if we're skipping the vin-lookup but it's not a repair, we still need to get the parts + await this.navigateForwardWithSingleCarMatch(); } } diff --git a/src/store/index.js b/src/store/index.js index 12e718e5d..32c4f71b6 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1432,9 +1432,12 @@ export const actions = { default: } - // if (context.state.order.vehicle.make.toLowerCase() === "ford" && context.state.order.vehicle.year >= 2018) { - // return true; - // } + if ( + context.state.order.vehicle.make.toLowerCase() === "ford" && + context.state.order.vehicle.year >= 2018 + ) { + return true; + } if ( context.state.order.vehicle.make.toLowerCase() === "bmw" &&