-
@@ -74,7 +74,7 @@ export default {
addressQuestions,
siteFooter,
// eslint-disable-next-line vue/no-reserved-component-names
- Form,
+ Form
},
mixins: [BaseFormMixin],
async beforeRouteEnter(to, from, next) {
@@ -85,8 +85,8 @@ export default {
const promiseResultMap = [
{
resultKey: 'cmsContent',
- promise: cmsContentPromise,
- },
+ promise: cmsContentPromise
+ }
];
// use resultMap to populate layout content.
@@ -106,8 +106,8 @@ export default {
vehiclesFound: [],
rules: {
firstName: globalRules.POLICYHOLDER_FIRST_NAME_REQUIRED,
- lastName: globalRules.POLICYHOLDER_LAST_NAME_REQUIRED,
- },
+ lastName: globalRules.POLICYHOLDER_LAST_NAME_REQUIRED
+ }
};
},
computed: {
@@ -116,7 +116,7 @@ export default {
},
vehiclesCount() {
return this.vehiclesFound.length;
- },
+ }
},
methods: {
async forwardButtonAction() {
@@ -150,13 +150,13 @@ export default {
this.mainStore.order.customer.address.streetAddress2,
city: this.mainStore.order.customer.address.city,
state: this.mainStore.order.customer.address.state,
- zipCode: this.mainStore.order.customer.address.zipCode,
+ zipCode: this.mainStore.order.customer.address.zipCode
},
firstName: this.mainStore.order.customer.firstName,
- lastName: this.mainStore.order.customer.lastName,
+ lastName: this.mainStore.order.customer.lastName
};
- },
- },
+ }
+ }
};
diff --git a/src/layouts/tpa-confirmation/tpa-confirmation.vue b/src/layouts/tpa-confirmation/tpa-confirmation.vue
index b619b83f..22ee1195 100644
--- a/src/layouts/tpa-confirmation/tpa-confirmation.vue
+++ b/src/layouts/tpa-confirmation/tpa-confirmation.vue
@@ -19,7 +19,7 @@
class="mb-4"
cmsWidgetName="VehicleBannerWidget"
:displayGenericVehicleImage="false" />
-