From 3be77d99498fda05a545f648c2972c36a46913b8 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Mon, 15 Aug 2022 15:26:56 -0400 Subject: [PATCH] CSR-760 load/save experiments --- src/store/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store/index.js b/src/store/index.js index 76abf60db..c3a2676ac 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -339,6 +339,7 @@ export const mutations = { state.order.payment.insuranceCoverage.isVerified = orderInformation?.insuranceInfo.coverageVerified; state.order.customer.emailAddress = orderInformation.customer.emailAddress; + state.applicationUser.experiments = orderInformation.experiments; }, updateExperiments(state, experiments) { state.applicationUser.experiments = experiments; @@ -777,6 +778,7 @@ export const actions = { lastPage: applicationUser.lastPageVisited, crmCustomerId: applicationUser.crmCustomerId, savedSessionId: applicationUser.savedSessionId, + experiments: applicationUser.experiments, }, }); },