Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Filter searchable people list by accepted (#7915)

authored by

Samuel Newman and committed by
GitHub
29eef618 ba3cff62

+4 -1
+4 -1
src/components/dms/dialogs/SearchablePeopleList.tsx
··· 77 77 isFetching, 78 78 } = useActorAutocompleteQuery(searchText, true, 12) 79 79 const {data: follows} = useProfileFollowsQuery(currentAccount?.did) 80 - const {data: convos} = useListConvosQuery({enabled: showRecentConvos}) 80 + const {data: convos} = useListConvosQuery({ 81 + enabled: showRecentConvos, 82 + status: 'accepted', 83 + }) 81 84 82 85 const items = useMemo(() => { 83 86 let _items: Item[] = []