Feature flag on the ultra realistic voices

This commit is contained in:
Jackson Harper
2022-11-15 08:54:01 +08:00
parent 2b8f1da881
commit bbfb8a8b8b
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
var body: some View {
Group {
Form {
if language.key == "en" {
if FeatureFlag.enableUltraRealisticVoices, language.key == "en" {
if viewModel.waitingForRealisticVoices {
HStack {
Text("Signing up for beta")

View File

@ -14,5 +14,5 @@ public enum FeatureFlag {
public static let enableShareButton = false
public static let enableSnooze = false
public static let enableGridCardsOnPhone = false
public static let enableHighlightsView = true
public static let enableUltraRealisticVoices = false
}