From 4eefa6963f8d41733f4c4c03dea2db81602a4876 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Mon, 12 Jan 2026 10:29:06 -0500 Subject: [PATCH] CASH-2025: add null check --- src/layouts/quote/quote.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 8d86c16af..3c69ec53c 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -332,7 +332,7 @@ export default { const nullSafeGlassParts = lineItems.glassParts ?? []; const oemGlassCheck = resultMap.oemGlassCheck; - const offerOem = experimentAllowsOfferOem ? oemGlassCheck.offerOem : false; + const offerOem = experimentAllowsOfferOem ? oemGlassCheck?.offerOem : false; const oemGlassPieceParts = oemGlassCheck?.glassPieceParts; const oemGlassParts = oemGlassPieceParts ? oemGlassPieceParts[0].parts : null; const isOemGlassSelected = store.getters.order.isOemGlassSelected;