diff options
Diffstat (limited to 'src/components/dms/NewChatDialog/index.tsx')
-rw-r--r-- | src/components/dms/NewChatDialog/index.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/dms/NewChatDialog/index.tsx b/src/components/dms/NewChatDialog/index.tsx index c13c450c4..a6c303043 100644 --- a/src/components/dms/NewChatDialog/index.tsx +++ b/src/components/dms/NewChatDialog/index.tsx @@ -314,9 +314,7 @@ function SearchablePeopleList({ isError, isFetching, } = useActorAutocompleteQuery(searchText, true, 12) - const {data: follows} = useProfileFollowsQuery(currentAccount?.did, { - limit: 12, - }) + const {data: follows} = useProfileFollowsQuery(currentAccount?.did) const items = useMemo(() => { let _items: Item[] = [] |