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 // Single VIN found
const carFound = carsFound[0].vehicle; const carFound = carsFound[0].vehicle;
// Check if vehicle is a non-servicable big truck
if (carFound.isBigTruck && !carFound.canSafeliteService) { if (carFound.isBigTruck && !carFound.canSafeliteService) {
this.displayNoServiceAlert = true; this.displayNoServiceAlert = true;
this.$refs.siteFooter.disableForwardButton(); this.$refs.siteFooter.disableForwardButton();

View file

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

View file

@ -1990,12 +1990,6 @@ export const useMainStore = defineStore({
this.order.vehicle.isBigTruck = vehicle.isBigTruck; this.order.vehicle.isBigTruck = vehicle.isBigTruck;
this.order.vehicle.canSafeliteService = vehicle.canSafeliteService; 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.updateSupportingItems(null);
this.updateVaps(null); this.updateVaps(null);
}, },