diff --git a/src/layouts/vehicle/vehicle.vue b/src/layouts/vehicle/vehicle.vue index 79fad6313..c81dfa2b0 100644 --- a/src/layouts/vehicle/vehicle.vue +++ b/src/layouts/vehicle/vehicle.vue @@ -80,11 +80,7 @@ import vehicleQuestion from "@/layouts/vehicle/vehicle-question/vehicle-question // Supporting files import { fetchCmsContentForPage } from "@/helpers/cms-content-helper"; import { experimentUniverses } from "@/constants/experiments"; -import { - getSessionKeyValue, - getUserIdValue, - getDeviceIdValue, -} from "@/helpers/heritage-integration/cookie-helper"; +import { getSessionKeyValue, getUserIdValue, getDeviceIdValue } from "@/helpers/heritage-integration/cookie-helper"; import { settleAllPromises } from "@/helpers/layout-helper"; import { Form, defineRule } from "vee-validate"; import { required } from "@/helpers/validation-rules"; @@ -192,10 +188,10 @@ export default { userId: getUserIdValue(), deviceId: getDeviceIdValue(), sessionKey: getSessionKeyValue(), - pageName: "vehicle-logExposure", //to.query.fmgPage, + pageName: to.query.fmgPage, experiment: experimentForLogging, }, - "vehicle-logExposure", + "vehicle", false ); } diff --git a/src/router/index.js b/src/router/index.js index 918688a3c..76d1203b7 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -810,7 +810,7 @@ async function runExperiments(nextPage) { { deviceId: getDeviceIdValue(), triggerEvent: experimentTriggers.PAGE_ENTRY, - triggerValue: nextPage == "vehicle" ? "vehicle-pageEntry" : nextPage, + triggerValue: nextPage, }, nextPage );