Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 012d106

Browse files
reset experiment (#3832)
Task/Issue URL: https://app.asana.com/0/1204186595873227/1209311973888722 **Description**: Restart onboarding experiment with contextual onboarding
1 parent 6a28610 commit 012d106

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

DuckDuckGo/Statistics/Experiment/PixelExperiment.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ enum PixelExperiment: String, CaseIterable {
6060

6161
// These are the variants. Rename or add/remove them as needed. If you change the string value
6262
// remember to keep it clear for privacy triage.
63-
case control = "oe"
64-
case newOnboarding = "of"
63+
case control = "og"
64+
case newOnboarding = "oh"
6565
}
6666

6767
// These functions contain the business logic for determining if the pixel should be fired or not.

DuckDuckGo/Tab/Model/Tab.swift

+6-1
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,12 @@ protocol NewWindowPolicyDecisionMaker {
808808
return
809809
}
810810
#endif
811-
setContent(PixelExperiment.cohort == .newOnboarding ? .onboarding : .onboardingDeprecated)
811+
if PixelExperiment.cohort == .newOnboarding {
812+
Application.appDelegate.onboardingStateMachine.state = .notStarted
813+
setContent(.onboarding)
814+
} else {
815+
setContent(.onboardingDeprecated)
816+
}
812817
}
813818

814819
@MainActor(unsafe)

0 commit comments

Comments
 (0)