diff options
author | Eric Bailey <git@esb.lol> | 2024-05-23 18:06:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 16:06:50 -0700 |
commit | 406993cf0e5d5fee2bac75aacc528da12c4e0289 (patch) | |
tree | d0e007adc80b253598c823cc437cb6719f18054d /src | |
parent | 9096655955829b15b99ee72a16c3edd14c11a2f1 (diff) | |
download | voidsky-406993cf0e5d5fee2bac75aacc528da12c4e0289.tar.zst |
[🐴] Overfetch follow for default new dialog state (#4205)
Diffstat (limited to 'src')
-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[] = [] |