Merge pull request #1195 from Safelite/feature/skiener/INSR-8540

INSR-8540 | Allow heavy trucks to be serviced via mobile
This commit is contained in:
scottkiener-at-safelite 2026-04-21 15:27:03 -04:00 committed by GitHub
commit 8422ebc41a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 9 deletions

View file

@ -74,11 +74,6 @@ export async function getZipCodeData(zipCode) {
}
export function isServiceableMobileWithData(isGlassServiceableMobile, isRecalibrationServiceableMobile) {
const isBigTruck = useMainStore().order.serviceLocation.isBigTruck;
if (isBigTruck) {
return false;
}
if (isRecalibrationServiceableMobile === true || isRecalibrationServiceableMobile === false) {
return (
isGlassServiceableMobile

View file

@ -249,10 +249,6 @@ export default {
return this.isGlassServiceableInshop;
},
isServiceableMobile() {
if (this.isBigTruck) {
return false;
}
if (this.isRecalibrationServiceableMobile === true || this.isRecalibrationServiceableMobile === false) {
return (
this.isGlassServiceableMobile