mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Feature flag on the ultra realistic voices
This commit is contained in:
parent
2b8f1da881
commit
bbfb8a8b8b
2 changed files with 2 additions and 2 deletions
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue