diff options
author | Eric Bailey <git@esb.lol> | 2024-10-10 11:47:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 09:47:12 -0700 |
commit | 509e3d9c85d7b5d793049282cd47a9821a3ecc38 (patch) | |
tree | 1c3c86c6c240245ed01f60f16d774c90a33360bf /src/screens/Moderation/index.tsx | |
parent | 676e6269e72f5e3ab4f394ca6cc0296945fe5210 (diff) | |
download | voidsky-509e3d9c85d7b5d793049282cd47a9821a3ecc38.tar.zst |
Filter out non-configrable mod authorities from report dialog (#5670)
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 070b87950..3b997009b 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() + } = useMyLabelersQuery({includeNonConfigurable: true}) useFocusEffect( React.useCallback(() => { |