diff options
author | Eric Bailey <git@esb.lol> | 2024-10-10 12:04:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 10:04:23 -0700 |
commit | 3b44ea203c253302fe364d627f5ee859a9ded9e7 (patch) | |
tree | fa64706b1937fb163f0718bd7c19de633b7d3905 /src/screens/Moderation/index.tsx | |
parent | 96cc31babcbc53a38772fb9c9563e32ac0d6f460 (diff) | |
download | voidsky-3b44ea203c253302fe364d627f5ee859a9ded9e7.tar.zst |
Invert non config filtering (#5674)
* Invert filtering logic * Rename * Rm comment
Diffstat (limited to 'src/screens/Moderation/index.tsx')
-rw-r--r-- | src/screens/Moderation/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Moderation/index.tsx b/src/screens/Moderation/index.tsx index 3b997009b..070b87950 100644 --- a/src/screens/Moderation/index.tsx +++ b/src/screens/Moderation/index.tsx @@ -169,7 +169,7 @@ export function ModerationScreenInner({ isLoading: isLabelersLoading, data: labelers, error: labelersError, - } = useMyLabelersQuery({includeNonConfigurable: true}) + } = useMyLabelersQuery() useFocusEffect( React.useCallback(() => { |