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, }, }); },