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
}
},
// 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;
// }
}
}
},