Invert non config filtering (#5674)

* Invert filtering logic

* Rename

* Rm comment
This commit is contained in:
Eric Bailey
2024-10-10 12:04:23 -05:00
committed by GitHub
parent 96cc31babc
commit 3b44ea203c
3 changed files with 6 additions and 11 deletions
+1 -1
View File
@@ -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)