Skip to content

Commit 39bcba3

Browse files
committed
Remove feature flag and update release notes
1 parent 305cbcb commit 39bcba3

File tree

4 files changed

+2
-7
lines changed

4 files changed

+2
-7
lines changed

Experiments/Experiments/DefaultFeatureFlagService.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
1111
return true
1212
case .inbox:
1313
return buildConfig == .localDeveloper || buildConfig == .alpha
14-
case .bulkEditProductVariations:
15-
return buildConfig == .localDeveloper || buildConfig == .alpha
1614
case .splitViewInOrdersTab:
1715
return buildConfig == .localDeveloper || buildConfig == .alpha
1816
case .updateOrderOptimistically:

Experiments/Experiments/FeatureFlag.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ public enum FeatureFlag: Int {
2222
///
2323
case inbox
2424

25-
/// Displays the bulk update option in product variations
26-
///
27-
case bulkEditProductVariations
28-
2925
/// Displays the Orders tab in a split view
3026
///
3127
case splitViewInOrdersTab

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- [*] Fixed a rare crash when selecting a store in the store picker. [https://github.com/woocommerce/woocommerce-ios/pull/7765]
88
- [*] Show suggestion for logging in to a WP.com site with a mismatched WP.com account. [https://github.com/woocommerce/woocommerce-ios/pull/7773]
99
- [*] Help center: Added help center web page with FAQs for "Not a WooCommerce site" and "Wrong WordPress.com account" error screens. [https://github.com/woocommerce/woocommerce-ios/pull/7767, https://github.com/woocommerce/woocommerce-ios/pull/7769]
10+
- [*] Now you can bulk edit variation prices. [https://github.com/woocommerce/woocommerce-ios/pull/7803]
1011

1112
10.5
1213
-----

WooCommerce/Classes/ViewRelated/Products/Variations/ProductVariationsViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private extension ProductVariationsViewController {
170170
/// Shows or hides the "more" navigation bar button.
171171
///
172172
func showOrHideMoreActionsNavigationBarButton() {
173-
guard featureFlagService.isFeatureFlagEnabled(.bulkEditProductVariations) && resultsController.fetchedObjects.isNotEmpty else {
173+
guard resultsController.fetchedObjects.isNotEmpty else {
174174
// Do not display the "more" button with the bulk update option if we do not have any variations
175175
hideMoreActionsNavigationBarButton()
176176
return

0 commit comments

Comments
 (0)