Skip to content

Commit 6692093

Browse files
authored
feat: promote GiveUsdf beta flag to public for easier testing (#975)
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 1f8bc73 commit 6692093

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

  • apps/flipcash/shared/featureflags/src/main/kotlin/com/flipcash/app/featureflags

apps/flipcash/shared/featureflags/src/main/kotlin/com/flipcash/app/featureflags/FeatureFlag.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ sealed interface FeatureFlag<T: Any> {
226226
override val launched: Boolean = false
227227
override val visible: Boolean = true
228228
override val persistLogOut: Boolean = false
229+
override val minTrack: FeatureTrack = FeatureTrack.Production
229230
}
230231

231232
@FeatureFlagMarker
@@ -281,7 +282,7 @@ val FeatureFlag<*>.title: String
281282
FeatureFlag.OnboardingPhoneVerification -> "Onboarding Phone Verification"
282283
FeatureFlag.Messenger -> "Messenger"
283284
FeatureFlag.NavBar -> "Navigation Bar"
284-
FeatureFlag.GiveUsdf -> "Give USDF"
285+
FeatureFlag.GiveUsdf -> "Give/Send USDF"
285286
FeatureFlag.DepositFirstUX -> "Deposit First UX"
286287
}
287288

@@ -308,7 +309,7 @@ val FeatureFlag<*>.message: String
308309
FeatureFlag.OnboardingPhoneVerification -> "When enabled, new accounts will be prompted to verify their phone number during onboarding"
309310
FeatureFlag.Messenger -> "When enabled, tapping a contact will open the chat messenger instead of navigating directly to send"
310311
FeatureFlag.NavBar -> "Customize the order and labels of navigation bar buttons"
311-
FeatureFlag.GiveUsdf -> "When enabled, you'll gain the ability to send USDF directly"
312+
FeatureFlag.GiveUsdf -> "When enabled, you'll gain the ability to send USDF directly and give it as cash"
312313
FeatureFlag.DepositFirstUX -> "When enabled, the user experience for new and empty accounts will be centered around depositing funds"
313314
}
314315

0 commit comments

Comments
 (0)