This commit is contained in:
Katie Kroell 2025-09-10 15:55:22 -04:00
parent 5e204b51b3
commit cae54add94
3 changed files with 1 additions and 8 deletions

View file

@ -270,7 +270,6 @@ export default {
// Single VIN found
const carFound = carsFound[0].vehicle;
// Check if vehicle is a non-servicable big truck
if (carFound.isBigTruck && !carFound.canSafeliteService) {
this.displayNoServiceAlert = true;
this.$refs.siteFooter.disableForwardButton();

View file

@ -50,7 +50,7 @@
<alert
v-if="displayNoServiceAlert"
ref="alertNoService"
class="mt-5 mb-5"
class="my-5"
cmsWidgetName="AlertNoServiceWidget"
alertClass="alert-danger"
:isDismissable="false" />

View file

@ -1990,12 +1990,6 @@ export const useMainStore = defineStore({
this.order.vehicle.isBigTruck = vehicle.isBigTruck;
this.order.vehicle.canSafeliteService = vehicle.canSafeliteService;
// if (vehicle.canSafeliteService !== undefined && !vehicle.canSafeliteService) {
// this.setBailout(bailoutMessage.HeavyTruckVehicle(vehicle.carId));
// } else if (this.isBailout && this.bailoutCode === bailoutCode.HeavyTruckVehicle) {
// this.resetBailout();
// }
this.updateSupportingItems(null);
this.updateVaps(null);
},