diff options
author | Eric Bailey <git@esb.lol> | 2023-12-07 15:06:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 13:06:41 -0800 |
commit | f115969f50b7f699696e71faabb4ae307177572e (patch) | |
tree | c8c1e7cf45c91dec06a604ba8b34a837c44038cf /src | |
parent | aeafa3a8cd2a4550faeea73d762a99f548c18064 (diff) | |
download | voidsky-f115969f50b7f699696e71faabb4ae307177572e.tar.zst |
Fix double sep (#2136)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/forms/PostDropdownBtn.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/view/com/util/forms/PostDropdownBtn.tsx b/src/view/com/util/forms/PostDropdownBtn.tsx index 1ba5ae8ae..63590e92d 100644 --- a/src/view/com/util/forms/PostDropdownBtn.tsx +++ b/src/view/com/util/forms/PostDropdownBtn.tsx @@ -154,7 +154,7 @@ export function PostDropdownBtn({ web: 'comment-slash', }, }, - hasSession && { + { label: 'separator', }, !isAuthor && @@ -177,9 +177,6 @@ export function PostDropdownBtn({ }, }, isAuthor && { - label: 'separator', - }, - isAuthor && { label: _(msg`Delete post`), onPress() { openModal({ |