From 75e1880b4d3be42e2e0b3aaac18142fa5d5f22a6 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Tue, 27 Jun 2023 15:05:26 -0400 Subject: [PATCH] Removing code that was for local use only it keeps the analytics service from being hit --- src/global-methods.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/global-methods.js b/src/global-methods.js index 0254eb21d..a12c3870d 100644 --- a/src/global-methods.js +++ b/src/global-methods.js @@ -23,12 +23,6 @@ export default { [headerKeys.EXPERIMENT]: JSON.stringify(store.getters.experimentSettings), }; - if (endpoint.toLowerCase().includes("/analytics/")) { - cfDistroUrl = ""; - endpoint = ""; - method = "GET"; - } - axios({ method: method, url: cfDistroUrl + endpoint,