@@ -13,7 +13,7 @@ let FeatureFlags = FeatureFlagConfiguration()
1313struct FeatureFlagConfiguration : Decodable {
1414 let cgmManagerCategorizeManualGlucoseRangeEnabled : Bool
1515 let criticalAlertsEnabled : Bool
16- let deleteAllButtonEnabled : Bool
16+ let entryDeletionEnabled : Bool
1717 let fiaspInsulinModelEnabled : Bool
1818 let includeServicesInSettingsEnabled : Bool
1919 let mockTherapySettingsEnabled : Bool
@@ -40,10 +40,10 @@ struct FeatureFlagConfiguration: Decodable {
4040 #endif
4141
4242 // Swift compiler config is inverse, since the default state is enabled.
43- #if DELETE_ALL_BUTTON_DISABLED
44- self . deleteAllButtonEnabled = false
43+ #if ENTRY_DELETION_DISABLED
44+ self . entryDeletionEnabled = false
4545 #else
46- self . deleteAllButtonEnabled = true
46+ self . entryDeletionEnabled = true
4747 #endif
4848
4949 // Swift compiler config is inverse, since the default state is enabled.
@@ -128,7 +128,7 @@ extension FeatureFlagConfiguration : CustomDebugStringConvertible {
128128 return [
129129 " * cgmManagerCategorizeManualGlucoseRangeEnabled: \( cgmManagerCategorizeManualGlucoseRangeEnabled) " ,
130130 " * criticalAlertsEnabled: \( criticalAlertsEnabled) " ,
131- " * deleteAllButtonEnabled : \( deleteAllButtonEnabled ) " ,
131+ " * entryDeletionEnabled : \( entryDeletionEnabled ) " ,
132132 " * fiaspInsulinModelEnabled: \( fiaspInsulinModelEnabled) " ,
133133 " * includeServicesInSettingsEnabled: \( includeServicesInSettingsEnabled) " ,
134134 " * mockTherapySettingsEnabled: \( mockTherapySettingsEnabled) " ,
0 commit comments