From f4b7296ea2527737eabf7610492655803c74f950 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 15 Oct 2025 18:46:40 -0500 Subject: [PATCH] Chats only go to bsky --- src/components/moderation/ReportDialog/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/moderation/ReportDialog/index.tsx b/src/components/moderation/ReportDialog/index.tsx index 0586445bae..b6f749e71d 100644 --- a/src/components/moderation/ReportDialog/index.tsx +++ b/src/components/moderation/ReportDialog/index.tsx @@ -141,7 +141,12 @@ function Inner(props: ReportDialogProps) { .filter(l => { if (!state.selectedOption) return false // some reasons ONLY go to Bluesky - if (BSKY_LABELER_ONLY_REPORT_REASONS.has(state.selectedOption.reason)) { + const isBskyOnlyReason = BSKY_LABELER_ONLY_REPORT_REASONS.has( + state.selectedOption.reason, + ) + // some subjects (chats) only go to Bluesky + const isBskyOnlySubject = props.subject.type === 'convoMessage' + if (isBskyOnlyReason || isBskyOnlySubject) { return l.creator.did === BSKY_LABELER_DID } const supportedReasonTypes: string[] | undefined = l.reasonTypes