From 4c4cab574ee69ee5468090fa5e2984aec8b0efed Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 15 Oct 2025 16:17:24 -0500 Subject: [PATCH] Just invert filter logic, no functional change but feels more correct --- src/components/moderation/ReportDialog/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/moderation/ReportDialog/index.tsx b/src/components/moderation/ReportDialog/index.tsx index be1dcaa937..f305a30afe 100644 --- a/src/components/moderation/ReportDialog/index.tsx +++ b/src/components/moderation/ReportDialog/index.tsx @@ -138,7 +138,7 @@ function Inner(props: ReportDialogProps) { return collections.includes(props.subject.nsid) }) .filter(l => { - if (!state.selectedOption) return true + if (!state.selectedOption) return false // some reasons ONLY go to Bluesky if (BSKY_LABELER_ONLY_REPORT_REASONS.has(state.selectedOption.reason)) { return l.creator.did === BSKY_LABELER_DID