diff options
author | Eric Bailey <git@esb.lol> | 2024-05-20 13:49:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 13:49:20 -0500 |
commit | d0bfe703d9882c82a9ca167170a716625945ca63 (patch) | |
tree | 9336251532c481c3c74fe71f1ee706a16ecff9c7 /src/components/ReportDialog | |
parent | cc7a0da1a2fb9f0f69605f71a7db81204d636ea3 (diff) | |
download | voidsky-d0bfe703d9882c82a9ca167170a716625945ca63.tar.zst |
[🐴] Switch back to encouraging users to report messages (#4117)
* Swap prompt back in * Remove unused convoAccount affordances
Diffstat (limited to 'src/components/ReportDialog')
-rw-r--r-- | src/components/ReportDialog/SelectReportOptionView.tsx | 3 | ||||
-rw-r--r-- | src/components/ReportDialog/types.ts | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/components/ReportDialog/SelectReportOptionView.tsx b/src/components/ReportDialog/SelectReportOptionView.tsx index 405384476..4413cbe89 100644 --- a/src/components/ReportDialog/SelectReportOptionView.tsx +++ b/src/components/ReportDialog/SelectReportOptionView.tsx @@ -58,9 +58,6 @@ export function SelectReportOptionView({ } else if (props.params.type === 'convoMessage') { title = _(msg`Report this message`) description = _(msg`Why should this message be reviewed?`) - } else if (props.params.type === 'convoAccount') { - title = _(msg`Report this account`) - description = _(msg`Why should this account be reviewed?`) } return { diff --git a/src/components/ReportDialog/types.ts b/src/components/ReportDialog/types.ts index 5a1385652..ceabe0b90 100644 --- a/src/components/ReportDialog/types.ts +++ b/src/components/ReportDialog/types.ts @@ -13,5 +13,4 @@ export type ReportDialogProps = { did: string } | {type: 'convoMessage'} - | {type: 'convoAccount'} } |