Fixed sort order description being flipped
This commit is contained in:
parent
cb215c46d7
commit
cf404859e4
|
@ -54,7 +54,7 @@ struct SettingsView : View {
|
||||||
func buildTimelineSection() -> some View {
|
func buildTimelineSection() -> some View {
|
||||||
Section(header: Text("TIMELINE")) {
|
Section(header: Text("TIMELINE")) {
|
||||||
Toggle(isOn: $viewModel.sortOldestToNewest) {
|
Toggle(isOn: $viewModel.sortOldestToNewest) {
|
||||||
Text("Sort Oldest to Newest")
|
Text("Sort Newest to Oldest")
|
||||||
}
|
}
|
||||||
Toggle(isOn: $viewModel.groupByFeed) {
|
Toggle(isOn: $viewModel.groupByFeed) {
|
||||||
Text("Group By Feed")
|
Text("Group By Feed")
|
||||||
|
|
Loading…
Reference in New Issue