Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable contextual onboarding #3667

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DuckDuckGo/Statistics/Experiment/PixelExperiment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "oc"
case newOnboarding = "od"
case control = "oe"
case newOnboarding = "of"
}

// These functions contain the business logic for determining if the pixel should be fired or not.
Expand Down
1 change: 0 additions & 1 deletion DuckDuckGo/Tab/Model/Tab.swift
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,6 @@ protocol NewWindowPolicyDecisionMaker {
#endif

if PixelExperiment.cohort == .newOnboarding {
Application.appDelegate.onboardingStateMachine.state = .notStarted
setContent(.onboarding)
} else {
setContent(.onboardingDeprecated)
Expand Down
Loading