this repo has no description
0
fork

Configure Feed

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

Try autofocus on search field

I commented this out for some reason that I forgot

+1 -3
+1 -3
src/pages/search.jsx
··· 125 125 } 126 126 127 127 useEffect(() => { 128 - // searchFieldRef.current?.focus?.(); 129 - // searchFormRef.current?.focus?.(); 130 128 if (q) { 131 - // searchFieldRef.current.value = q; 132 129 searchFormRef.current?.setValue?.(q); 133 130 loadResults(true); 134 131 } 132 + searchFormRef.current?.focus?.(); 135 133 }, [q, type, instance]); 136 134 137 135 return (