From 3b44ea203c253302fe364d627f5ee859a9ded9e7 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 10 Oct 2024 12:04:23 -0500 Subject: Invert non config filtering (#5674) * Invert filtering logic * Rename * Rm comment --- src/components/ReportDialog/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/ReportDialog/index.tsx') 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(null) -- cgit 1.4.1