about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-05-23 18:06:50 -0500
committerGitHub <noreply@github.com>2024-05-23 16:06:50 -0700
commit406993cf0e5d5fee2bac75aacc528da12c4e0289 (patch)
treed0e007adc80b253598c823cc437cb6719f18054d /src
parent9096655955829b15b99ee72a16c3edd14c11a2f1 (diff)
downloadvoidsky-406993cf0e5d5fee2bac75aacc528da12c4e0289.tar.zst
[🐴] Overfetch follow for default new dialog state (#4205)
Diffstat (limited to 'src')
-rw-r--r--src/components/dms/NewChatDialog/index.tsx4
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[] = []