this repo has no description
0
fork

Configure Feed

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

convert prefix to lowercase in actor autocomplete query (#2431)

authored by

Hailey and committed by
GitHub
cb9ed35c 928a626c

+2
+2
src/state/queries/actor-autocomplete.ts
··· 24 24 const {data: follows, isFetching} = useMyFollowsQuery() 25 25 const moderationOpts = useModerationOpts() 26 26 27 + prefix = prefix.toLowerCase() 28 + 27 29 return useQuery<AppBskyActorDefs.ProfileViewBasic[]>({ 28 30 staleTime: STALE.MINUTES.ONE, 29 31 queryKey: RQKEY(prefix || ''),