Removing comments

This commit is contained in:
brydon1 2023-06-28 14:59:56 -04:00
parent 6df4b1400c
commit 2f95964817

View file

@ -60,9 +60,6 @@ export default {
bailout: false bailout: false
} }
}, },
// mounted() {
// this.autoSelectIfOneVehicle();
// },
async beforeRouteEnter(to, from, next) async beforeRouteEnter(to, from, next)
{ {
// Call APIs // Call APIs
@ -138,12 +135,6 @@ export default {
}; };
} }
}, },
// autoSelectIfOneVehicle() {
// if (this.policyVehicles.length == 1) {
// this.selectedVehicleVin = this.policyVehicles[0].vin;
// }
// }
}, },
computed:{ computed:{
VehiclesForQuestions() { VehiclesForQuestions() {
@ -221,14 +212,6 @@ export default {
// if there is more than 1 style for the selected vehicle, display generic/blurred image // if there is more than 1 style for the selected vehicle, display generic/blurred image
this.displayGeneric = styleOptions?.data?.length > 1; this.displayGeneric = styleOptions?.data?.length > 1;
// if (styleOptions?.data?.length > 1) {
// = true;
// }
// else {
// // display clear image of vehicle
// this.displayGeneric = false;
// }
} }
} }
}, },