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;