diff options
author | Jeff Griffiths <jeff@eko-recordings.ca> | 2023-07-14 09:50:55 -0700 |
---|---|---|
committer | Jeff Griffiths <jeff@eko-recordings.ca> | 2023-07-14 09:50:55 -0700 |
commit | 76aa792afd60ae6acbc31e30e7668c7b87b28113 (patch) | |
tree | bf956e87602ce4f5bf02a517063724d76d3821d7 | |
parent | 3bd891b01aecdd8f2c7d5d833d735cb5ba6f5cba (diff) | |
download | voidsky-76aa792afd60ae6acbc31e30e7668c7b87b28113.tar.zst |
adds additional reason for reporting an account profile
-rw-r--r-- | src/view/com/modals/report/ReportAccount.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/view/com/modals/report/ReportAccount.tsx b/src/view/com/modals/report/ReportAccount.tsx index 47d647870..eae7de25c 100644 --- a/src/view/com/modals/report/ReportAccount.tsx +++ b/src/view/com/modals/report/ReportAccount.tsx @@ -123,6 +123,19 @@ const SelectIssue = ({ </View> ), }, + { + key: ComAtprotoModerationDefs.REASONVIOLATION, + label: ( + <View> + <Text style={pal.text} type="md-bold"> + Account handle, display name or description contains terms that violate community standards. + </Text> + <Text style={pal.textLight}> + Violation; terms used violate community standards + </Text> + </View> + ), + }, ], [pal], ) |