about summary refs log tree commit diff
path: root/src/components
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-10-10 12:04:23 -0500
committerGitHub <noreply@github.com>2024-10-10 10:04:23 -0700
commit3b44ea203c253302fe364d627f5ee859a9ded9e7 (patch)
treefa64706b1937fb163f0718bd7c19de633b7d3905 /src/components
parent96cc31babcbc53a38772fb9c9563e32ac0d6f460 (diff)
downloadvoidsky-3b44ea203c253302fe364d627f5ee859a9ded9e7.tar.zst
Invert non config filtering (#5674)
* Invert filtering logic

* Rename

* Rm comment
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ReportDialog/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ReportDialog/index.tsx b/src/components/ReportDialog/index.tsx
index 5bf8aa5b4..4402152ab 100644
--- a/src/components/ReportDialog/index.tsx
+++ b/src/components/ReportDialog/index.tsx
@@ -35,7 +35,7 @@ function ReportDialogInner(props: ReportDialogProps) {
     isLoading: isLabelerLoading,
     data: labelers,
     error,
-  } = useMyLabelersQuery()
+  } = useMyLabelersQuery({excludeNonConfigurableLabelers: true})
   const isLoading = useDelayedLoading(500, isLabelerLoading)
 
   const ref = React.useRef<ScrollView>(null)