File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
WooCommerce/Classes/Authentication Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,6 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
4949 . performanceMonitoringUserInteraction:
5050 // Disabled by default to avoid costs spikes, unless in internal testing builds.
5151 return buildConfig == . alpha
52- case . nativeJetpackSetupFlow:
53- return buildConfig == . localDeveloper || buildConfig == . alpha
5452 case . analyticsHub:
5553 return buildConfig == . localDeveloper || buildConfig == . alpha
5654 default :
Original file line number Diff line number Diff line change @@ -755,8 +755,7 @@ private extension AuthenticationManager {
755755 }
756756
757757 // Shows the native Jetpack flow during the site discovery flow.
758- // TODO-8075: replace feature flag with A/B testing
759- if featureFlagService. isFeatureFlagEnabled ( . nativeJetpackSetupFlow) {
758+ if ABTest . abTestNativeJetpackSetupFlow. variation == . control {
760759 return jetpackSetupUI ( for: site. url,
761760 connectionMissingOnly: site. hasJetpack && site. isJetpackActive,
762761 in: navigationController)
You can’t perform that action at this time.
0 commit comments