[🐴] Switch back to encouraging users to report messages (#4117)

* Swap prompt back in

* Remove unused convoAccount affordances
This commit is contained in:
Eric Bailey 2024-05-20 13:49:20 -05:00 committed by GitHub
parent cc7a0da1a2
commit d0bfe703d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 39 additions and 63 deletions

View file

@ -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 {

View file

@ -13,5 +13,4 @@ export type ReportDialogProps = {
did: string
}
| {type: 'convoMessage'}
| {type: 'convoAccount'}
}