Skip to content

Commit

Permalink
reporting: anti-social option; alert emoji around urgent option (#617)
Browse files Browse the repository at this point in the history
* 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 <pfrazee@gmail.com>
  • Loading branch information
bnewbold and pfrazee authored May 15, 2023
1 parent 824a231 commit 0a0afdf
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/view/com/modals/ReportPost.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -72,6 +72,19 @@ export function Component({
</View>
),
},
{
key: ComAtprotoModerationDefs.REASONRUDE,
label: (
<View>
<Text style={pal.text} type="md-bold">
Anti-Social Behavior
</Text>
<Text style={pal.textLight}>
Harassment, trolling, or intolerance
</Text>
</View>
),
},
{
key: ComAtprotoModerationDefs.REASONVIOLATION,
label: (
Expand Down

0 comments on commit 0a0afdf

Please sign in to comment.