From 2f959648179edd70cb6f46f4ea407ff0a85e3a62 Mon Sep 17 00:00:00 2001 From: brydon1 Date: Wed, 28 Jun 2023 14:59:56 -0400 Subject: [PATCH] Removing comments --- .../policy-vehicles/policy-vehicles.vue | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/src/layouts/policy-vehicles/policy-vehicles.vue b/src/layouts/policy-vehicles/policy-vehicles.vue index 731e6b52..a7b24bd1 100644 --- a/src/layouts/policy-vehicles/policy-vehicles.vue +++ b/src/layouts/policy-vehicles/policy-vehicles.vue @@ -60,9 +60,6 @@ export default { bailout: false } }, - // mounted() { - // this.autoSelectIfOneVehicle(); - // }, async beforeRouteEnter(to, from, next) { // Call APIs @@ -137,13 +134,7 @@ export default { error: true, }; } - }, - - // autoSelectIfOneVehicle() { - // if (this.policyVehicles.length == 1) { - // this.selectedVehicleVin = this.policyVehicles[0].vin; - // } - // } + }, }, computed:{ VehiclesForQuestions() { @@ -221,14 +212,6 @@ export default { // if there is more than 1 style for the selected vehicle, display generic/blurred image this.displayGeneric = styleOptions?.data?.length > 1; - - // if (styleOptions?.data?.length > 1) { - // = true; - // } - // else { - // // display clear image of vehicle - // this.displayGeneric = false; - // } } } },