diff options
author | Eric Bailey <git@esb.lol> | 2023-12-18 11:16:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 09:16:33 -0800 |
commit | 47ff3e8e3f84138ce207b2d2209f358e4cc1f74a (patch) | |
tree | 84bdcccc3dbf3163f17662036a20ab02931cafed /src/view/com/util/moderation/LabelInfo.tsx | |
parent | 38e65fbe75d925b8081e3209c0281daaae9b9809 (diff) | |
download | voidsky-47ff3e8e3f84138ce207b2d2209f358e4cc1f74a.tar.zst |
Hide label appeal on self-labeled posts (#2232)
* Hide appeal for self-labeled post, update copy * Use correct logic
Diffstat (limited to 'src/view/com/util/moderation/LabelInfo.tsx')
-rw-r--r-- | src/view/com/util/moderation/LabelInfo.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/util/moderation/LabelInfo.tsx b/src/view/com/util/moderation/LabelInfo.tsx index 8fe3765c2..970338752 100644 --- a/src/view/com/util/moderation/LabelInfo.tsx +++ b/src/view/com/util/moderation/LabelInfo.tsx @@ -43,7 +43,8 @@ export function LabelInfo({ ]}> <Text type="sm" style={pal.text}> <Trans> - This {'did' in details ? 'account' : 'post'} has been labeled. + A content warning has been applied to this{' '} + {'did' in details ? 'account' : 'post'}. </Trans>{' '} </Text> <Pressable |