diff --git a/Configuration/BuildNumber.xcconfig b/Configuration/BuildNumber.xcconfig index d3ff8937a6..a0e4c363e3 100644 --- a/Configuration/BuildNumber.xcconfig +++ b/Configuration/BuildNumber.xcconfig @@ -1 +1 @@ -CURRENT_PROJECT_VERSION = 239 +CURRENT_PROJECT_VERSION = 240 diff --git a/DuckDuckGo/Statistics/Experiment/PixelExperiment.swift b/DuckDuckGo/Statistics/Experiment/PixelExperiment.swift index 04465aa90f..58fdee2b3a 100644 --- a/DuckDuckGo/Statistics/Experiment/PixelExperiment.swift +++ b/DuckDuckGo/Statistics/Experiment/PixelExperiment.swift @@ -60,8 +60,8 @@ enum PixelExperiment: String, CaseIterable { // These are the variants. Rename or add/remove them as needed. If you change the string value // remember to keep it clear for privacy triage. - case control = "oa" - case newOnboarding = "ob" + case control +// case newOnboarding = "ob" } // These functions contain the business logic for determining if the pixel should be fired or not. diff --git a/DuckDuckGo/Tab/Model/Tab.swift b/DuckDuckGo/Tab/Model/Tab.swift index 99e6598883..7a1fd12d30 100644 --- a/DuckDuckGo/Tab/Model/Tab.swift +++ b/DuckDuckGo/Tab/Model/Tab.swift @@ -727,11 +727,11 @@ protocol NewWindowPolicyDecisionMaker { } #endif - if PixelExperiment.cohort == .newOnboarding { - setContent(.onboarding) - } else { +// if PixelExperiment.cohort == .newOnboarding { +// setContent(.onboarding) +// } else { setContent(.onboardingDeprecated) - } +// } } @MainActor(unsafe)