File tree Expand file tree Collapse file tree 3 files changed +1
-11
lines changed
WooCommerce/Classes/ViewRelated/Orders Expand file tree Collapse file tree 3 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
77 switch featureFlag {
88 case . barcodeScanner:
99 return buildConfig == . localDeveloper || buildConfig == . alpha
10- case . orderListFilters:
11- return true
1210 case . jetpackConnectionPackageSupport:
1311 return true
1412 case . hubMenu:
Original file line number Diff line number Diff line change @@ -14,10 +14,6 @@ public enum FeatureFlag: Int {
1414 ///
1515 case reviews
1616
17- /// Display the bar for displaying the filters in the Order List
18- ///
19- case orderListFilters
20-
2117 /// Allows sites with plugins that include Jetpack Connection Package and without Jetpack-the-plugin to connect to the app
2218 ///
2319 case jetpackConnectionPackageSupport
Original file line number Diff line number Diff line change @@ -212,11 +212,7 @@ private extension OrdersRootViewController {
212212
213213 func configureFiltersBar( ) {
214214 // Display the filtered orders bar
215- // if the feature flag is enabled
216- let isOrderListFiltersEnabled = featureFlagService. isFeatureFlagEnabled ( . orderListFilters)
217- if isOrderListFiltersEnabled {
218- stackView. addArrangedSubview ( filtersBar)
219- }
215+ stackView. addArrangedSubview ( filtersBar)
220216 filtersBar. onAction = { [ weak self] in
221217 self ? . filterButtonTapped ( )
222218 }
You can’t perform that action at this time.
0 commit comments