Remove text to speech feature flag, its enabled for everyone now

This commit is contained in:
Jackson Harper 2022-10-07 12:48:02 +08:00
parent df8be3c6c5
commit 783e25b63a
2 changed files with 1 additions and 4 deletions

View file

@ -132,9 +132,7 @@ struct WebReaderContainerView: View {
.scaleEffect(navBarVisibilityRatio)
Spacer()
#endif
if FeatureFlag.enableTextToSpeechButton {
audioNavbarItem
}
audioNavbarItem
Button(
action: { showPreferencesPopover.toggle() },
label: {

View file

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