From 0a0afdf2c2c90c5460784935e9d1324dadf61d48 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 15 May 2023 12:25:50 -0700 Subject: reporting: anti-social option; alert emoji around urgent option (#617) * reporting: new anti-social post report option * reporting: alarm emoji on urgent report option * reporting: appease 'make lint' I originally had text on a separate line, but that failed, so I put text+tags on a line and thought that worked, but failed again? Seems inconsistent, but trying again. * Remove emojis and increase report post height --------- Co-authored-by: Paul Frazee --- src/view/com/modals/ReportPost.tsx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/view/com/modals/ReportPost.tsx b/src/view/com/modals/ReportPost.tsx index 0695eed8e..ec75dc4c2 100644 --- a/src/view/com/modals/ReportPost.tsx +++ b/src/view/com/modals/ReportPost.tsx @@ -19,7 +19,7 @@ import {usePalette} from 'lib/hooks/usePalette' const DMCA_LINK = 'https://bsky.app/support/copyright' -export const snapPoints = [500] +export const snapPoints = [550] export function Component({ postUri, @@ -72,6 +72,19 @@ export function Component({ ), }, + { + key: ComAtprotoModerationDefs.REASONRUDE, + label: ( + + + Anti-Social Behavior + + + Harassment, trolling, or intolerance + + + ), + }, { key: ComAtprotoModerationDefs.REASONVIOLATION, label: ( -- cgit 1.4.1