diff --git a/Mlem/Views/Tabs/Feeds/Feed View Logic.swift b/Mlem/Views/Tabs/Feeds/Feed View Logic.swift index e030f30ae..1bdbf914a 100644 --- a/Mlem/Views/Tabs/Feeds/Feed View Logic.swift +++ b/Mlem/Views/Tabs/Feeds/Feed View Logic.swift @@ -92,7 +92,7 @@ extension FeedView { let isSelected = postSortType == type let imageName = isSelected ? type.iconNameFill : type.iconName return MenuFunction.standardMenuFunction( - text: type.description, + text: type.label, imageName: imageName, destructiveActionPrompt: nil, enabled: !isSelected @@ -106,7 +106,7 @@ extension FeedView { PostSortType.availableTopTypes.map { type in let isSelected = postSortType == type return MenuFunction.standardMenuFunction( - text: type.description, + text: type.label, imageName: isSelected ? Icons.timeSortFill : Icons.timeSort, destructiveActionPrompt: nil, enabled: !isSelected