diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index 62687a08..f9b6ab64 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -109,7 +109,7 @@ export default { activeVehicleLookupAlertType: null, vehicleFromLookup: null, licensePlate: null, - licenseState: null, + licenseState: useMainStore().order.customer.address.state, displayVinNotFoundAlert: false, displayMatchedDifferentVehicleAlert: false, previouslyEnteredCarId: "", @@ -198,7 +198,6 @@ export default { registrationInfo: { licensePlate: this.licensePlate, state: this.licenseState, - zipCode: useMainStore().vehicle.registration.zipCode, }, }, false diff --git a/src/layouts/welcome-page/welcome-page.vue b/src/layouts/welcome-page/welcome-page.vue index 6fc8b75e..6502ee57 100644 --- a/src/layouts/welcome-page/welcome-page.vue +++ b/src/layouts/welcome-page/welcome-page.vue @@ -4,6 +4,7 @@
+
-
+
+ @@ -334,4 +336,23 @@ { margin-bottom: 0rem !important; } + +.p-2, body .page-container-grouped-styles{ + padding:0 !important; +} +.site-header[data-v-0fe86b7b] { + padding: 0.5rem 0; +} +.subheader-primary{ + margin-top:0.25rem; +} + +.img-fluid{ + width:162px; +} +.body-container +{ + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} diff --git a/src/store/index.js b/src/store/index.js index d741b9b1..cd9e9ed1 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -83,7 +83,7 @@ const getDefaultState = () => { }, referralNumber: null, referralDate: null, - accountNumber: 0, + accountNumber: 1, }, applicationUser: { lastPageVisited: null, @@ -954,8 +954,7 @@ export const useMainStore = defineStore({ if ( registrationInfo?.licensePlate !== this.order.vehicle.registration?.licensePlate || - registrationInfo?.state !== this.order.vehicle.registration?.state || - registrationInfo?.zipCode !== this.order.vehicle.registration?.zipCode + registrationInfo?.state !== this.order.vehicle.registration?.state ) { this.resetRegistrationAndDependencies();