Skip to content

Commit

Permalink
Tweak default post/comment title text
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding committed May 11, 2024
1 parent ca4e79c commit fe1a65d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/features/settings/general/comments/DefaultSort.tsx
Expand Up @@ -13,7 +13,7 @@ export default function DefaultSort() {
return (
<SettingSelector
title="Default Sort"
openTitle="Default Comment Sort"
openTitle="Default Comments Sort..."
selected={defaultCommentSort}
setSelected={setDefaultCommentSort}
options={OCommentDefaultSort}
Expand Down
2 changes: 1 addition & 1 deletion src/features/settings/general/posts/DefaultSort.tsx
Expand Up @@ -19,7 +19,7 @@ export default function DefaultSort() {
(newSort) => {
dispatch(setDefaultPostSort(newSort));
},
{ title: "Default Post Sort" },
{ title: "Default Posts Sort..." },
);

return (
Expand Down

0 comments on commit fe1a65d

Please sign in to comment.