Fixed sort order description being flipped

This commit is contained in:
Phil Viso 2019-09-08 17:42:43 -05:00
parent cb215c46d7
commit cf404859e4
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ struct SettingsView : View {
func buildTimelineSection() -> some View {
Section(header: Text("TIMELINE")) {
Toggle(isOn: $viewModel.sortOldestToNewest) {
Text("Sort Oldest to Newest")
Text("Sort Newest to Oldest")
}
Toggle(isOn: $viewModel.groupByFeed) {
Text("Group By Feed")