Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ sealed interface FeatureFlag<T: Any> {
override val launched: Boolean = false
override val visible: Boolean = true
override val persistLogOut: Boolean = false
override val minTrack: FeatureTrack = FeatureTrack.Production
}

@FeatureFlagMarker
Expand Down Expand Up @@ -281,7 +282,7 @@ val FeatureFlag<*>.title: String
FeatureFlag.OnboardingPhoneVerification -> "Onboarding Phone Verification"
FeatureFlag.Messenger -> "Messenger"
FeatureFlag.NavBar -> "Navigation Bar"
FeatureFlag.GiveUsdf -> "Give USDF"
FeatureFlag.GiveUsdf -> "Give/Send USDF"
FeatureFlag.DepositFirstUX -> "Deposit First UX"
}

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

Expand Down
Loading