Chats only go to bsky

This commit is contained in:
Eric Bailey
2025-10-15 18:46:40 -05:00
parent a2bada7cf7
commit f4b7296ea2
@@ -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