This commit is contained in:
Ethan Pippin 2021-08-20 19:51:13 -06:00
parent d5594625ec
commit 574509526d
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ struct SettingsView: View {
var body: some View {
NavigationView {
Form {
Section(header: Text("")) {
Section(header: EmptyView()) {
HStack {
Text("User")
Spacer()
@ -58,7 +58,7 @@ struct SettingsView: View {
.font(.callout)
}
}
Section(header: Text("Playback settings")) {
Section(header: Text("Playback")) {
Picker("Default local quality", selection: $inNetworkStreamBitrate) {
ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
Text(bitrate.name).tag(bitrate.value)