linting fix

This commit is contained in:
Katie Kroell 2023-08-04 15:57:33 -04:00
parent 302ddf3090
commit 73c36be620

View file

@ -72,11 +72,6 @@ export default {
vm.setCmsContent(cmsContentPromise);
});
},
mounted() {
if (this.VehiclesFromApi?.length === 1) {
this.selectedVehicleVin = this.VehiclesFromApi[0].vin;
}
},
data() {
const policyVehicles = useMainStore().pageData(issPageValues.POLICY_VEHICLES);
return {
@ -160,6 +155,11 @@ export default {
}
}
},
mounted() {
if (this.VehiclesFromApi?.length === 1) {
this.selectedVehicleVin = this.VehiclesFromApi[0].vin;
}
},
methods:
{
backButtonAction() {