diff --git a/src/components/moderation/ReportDialog/const.ts b/src/components/moderation/ReportDialog/const.ts index d6eaec1f30..ab94c87f56 100644 --- a/src/components/moderation/ReportDialog/const.ts +++ b/src/components/moderation/ReportDialog/const.ts @@ -96,6 +96,8 @@ export const OTHER_REPORT_REASONS: Set = new Set([ OzoneReportDefs.REASONHARASSMENTOTHER, OzoneReportDefs.REASONMISLEADINGOTHER, OzoneReportDefs.REASONRULEOTHER, + OzoneReportDefs.REASONSELFHARMOTHER, + OzoneReportDefs.REASONOTHER, ]) /** diff --git a/src/components/moderation/ReportDialog/utils/useReportOptions.ts b/src/components/moderation/ReportDialog/utils/useReportOptions.ts index e0c68e08dd..6f59246475 100644 --- a/src/components/moderation/ReportDialog/utils/useReportOptions.ts +++ b/src/components/moderation/ReportDialog/utils/useReportOptions.ts @@ -18,7 +18,6 @@ export type ReportCategoryConfig = { title: string description: string options: ReportOption[] - isOther?: boolean } export type ReportOption = { @@ -246,7 +245,6 @@ export function useReportOptions() { reason: OzoneReportDefs.REASONOTHER, }, ], - isOther: true, }, }