Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

convert query to lowercase before performing search (#2770)

authored by

Hailey and committed by
GitHub
f393dda5 a070d409

+1
+1
src/state/queries/actor-autocomplete.ts
··· 61 61 62 62 return React.useCallback( 63 63 async ({query, limit = 8}: {query: string; limit?: number}) => { 64 + query = query.toLowerCase() 64 65 let res 65 66 if (query) { 66 67 try {