Bluesky app fork with some witchin' additions 💫

convert query to lowercase before performing search (#2770)

authored by hailey.at 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 {