Skip to content

Commit

Permalink
Hide skip buttons by default, fix retained legacy p3a callout
Browse files Browse the repository at this point in the history
  • Loading branch information
kylehickinson committed Feb 25, 2025
1 parent 54a0f1e commit 8121f63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ extension BrowserViewController {
toggleAction: { [weak self] isOn in
self?.braveCore.p3aUtils.isP3AEnabled = isOn
},
linkAction: { url in
linkAction: { [unowned onboardingP3ACalloutController] url in
let p3aLearnMoreController = SFSafariViewController(
url: .brave.p3aHelpArticle,
configuration: .init()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class OnboardingController: UIHostingController<OnboardingRootView> {
environment: OnboardingEnvironment,
steps: [any OnboardingStep] = .allSteps,
showSplashScreen: Bool = true,
showDismissButton: Bool = true,
showDismissButton: Bool = false,
onCompletion: @escaping () -> Void = {}
) {
super.init(
Expand Down

0 comments on commit 8121f63

Please sign in to comment.