diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 3d539e630..d6288735e 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -138,9 +138,6 @@ export default { async beforeRouteEnter(to, from, next) { // Call APIs const cmsContentPromise = fetchCmsContentForPage(to.query.fmgPage); - const experimentForLogging = store.getters.applicationUser.experiments.find( - (e) => e.universeName === experimentUniverses.RECAL_PRICE_REMOVAL - ); const wipersPromise = baseMixin.methods.dispatchStoreActionWithLogging( storeActions.GET_WIPERS, { @@ -208,33 +205,6 @@ export default { ...servicePackageDiscountPart, ]; - // If the recal experiment is found then log the experiment exposure. - const isRecalibrationOnOrder = containsLineItemWithPartType( - partTypeStrings.RECALIBRATION, - availableLineItems - ); - const canSafeliteRecalibrate = nullSafeGlassParts.some((glassPart) => { - return glassPart.partType === "WINDSHIELD" && glassPart.canSafeliteRecalibrate; - }); - if ( - experimentForLogging !== undefined && - isRecalibrationOnOrder && - canSafeliteRecalibrate - ) { - // Log experiment exposure - baseMixin.methods.dispatchStoreActionWithLogging( - storeActions.LOG_EXPERIMENT_EXPOSURE, - { - userId: getUserIdValue(), - sessionKey: getSessionKeyValue(), - pageName: to.query.fmgPage, - experiment: experimentForLogging, - }, - "quote", - false - ); - } - // When calling pricing from the quote page, always use the cash parent account baseMixin.methods.dispatchStoreAction( storeActions.SAVE_PARENT_ACCOUNT_NUMBER,