-
-
-
-
-
-
- {{ textToShow }}
-
-
-
-
-
-
+
diff --git a/src/mixins/experiment-mixin.js b/src/mixins/experiment-mixin.js
index 5161c0764..2a6b10f34 100644
--- a/src/mixins/experiment-mixin.js
+++ b/src/mixins/experiment-mixin.js
@@ -3,9 +3,6 @@ import store from "@/store";
export default {
methods: {
hasSettingEqualTo(settingName, settingValue) {
- console.log(store.getters.experimentSettings)
- console.log(store.getters.experimentSettings[settingName])
- console.log(settingValue)
return store.getters.experimentSettings[settingName] == settingValue;
},
hasSetting(settingName) {
diff --git a/src/router/index.js b/src/router/index.js
index 7a5855a40..4d14f70de 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -20,23 +20,8 @@ import store from "@/store";
import analyticsMixin from "@/mixins/analytics-mixin";
import { experimentTriggers } from "../constants/experiments";
import { applicationConfig } from "../constants/application-config";
-import TestOne from "@/layouts/test-one";
-import TestTwo from "@/layouts/test-two";
+
const routes = [
- {
- path: "/test1",
- name: "test1",
- components: {
- default: TestOne
- }
- },
- {
- path: "/test2",
- name: "test2",
- components: {
- default: TestTwo
- }
- },
{
path: "/",
name: "root",
@@ -240,8 +225,6 @@ function navigateToUrl(url, optionalQuery = {}) {
externalUrl.searchParams.append(queryKey, optionalQuery[queryKey]);
}
- externalUrl.searchParams.append("experiments", "ConceptFunnel=ConceptFunnel_V1=ConceptFunnel_TEST=true");
-
window.location.assign(externalUrl);
}
diff --git a/src/router/router-constants/routing-table.js b/src/router/router-constants/routing-table.js
index f61ee1cbd..3c36af9f3 100644
--- a/src/router/router-constants/routing-table.js
+++ b/src/router/router-constants/routing-table.js
@@ -7,16 +7,6 @@ const routingTable = function(store) {
{
fmgPageValue: fmgPageValues.VEHICLE_YEAR,
maps: [
- {
- scenario: navigationScenarios.SELECTED_YEAR,
- destinationFmgPageValue: "test1",
- filter: store.getters.vehicle.year === 2010
- },
- {
- scenario: navigationScenarios.SELECTED_YEAR,
- destinationFmgPageValue: "test2",
- filter: store.getters.vehicle.year < 1954
- },
{
scenario: navigationScenarios.SELECTED_YEAR,
destinationFmgPageValue: fmgPageValues.VEHICLE_MAKE,
diff --git a/src/store/index.js b/src/store/index.js
index 5ed386200..9596b7b85 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -391,7 +391,7 @@ export const getters = {
funnelServiceZipCode: state.order.serviceLocation.zipCode,
funnelParentAccountNumber: state.order.accountNumber,
funnelIsCoverageVerified: state.order.payment.insuranceCoverage.isVerified,
- funnelHasRecalibrationPart: getAllValuesOfPropertyInArrayOfObjects(state.order.lineItems.glassParts, "requiresRecalibration")?.length > 0,
+ funnelHasRecalibrationPart: getHasRecalibrationPart(state),
funnelSelectedMultiGlass: state.order.damage.glassToReplace?.length > 1,
funnelSelectedWindshieldGlass: getAllValuesOfPropertyInArrayOfObjects(state.order.damage.glassToReplace, "glassLocation").includes(damageLocationsSelected.WINDSHIELD),
funnelSelectedBackGlass: getAllValuesOfPropertyInArrayOfObjects(state.order.damage.glassToReplace, "glassLocation").includes(damageLocationsSelected.REAR),