CASH-1637

CASH-1637 bug cleanup
This commit is contained in:
CarlNation 2025-10-06 15:44:51 -04:00
parent 8ab2a25fe4
commit 2ed7af2c7a

View file

@ -208,7 +208,7 @@ export default {
//event 1
var label = {};
label.carId = order?.vehicle?.carId;
label.hasVin = order?.vehicle ? true : false;
label.hasVin = order?.vehicle?.vin ? true : false;
label.cashOrInsuranceAccountType = order?.payment?.isInsurance ? "Insurance" : "Cash";
label.damageType = order?.damage?.isRepair ? "Repair" : "Replace";
label.productType = order?.damage?.glassToReplace;
@ -248,7 +248,7 @@ export default {
label.deductible = order?.policy?.currentDeductible;
label.isVerified = order?.payment?.insuranceCoverage?.isVerified;
label.isNoComp = order?.policy?.isNoComp;
label.isItac = order?.policy?.isNoComp;
label.isItac = order?.policy?.isItac;
await this.pushEventToGA(
GaCategories.FMG_SESSION_DATA,