Skip to content

Commit

Permalink
Merge pull request #550 from StampyAI/stampy-redesign-549
Browse files Browse the repository at this point in the history
Search results not redirecting. FIX: increase the `hide` timer, which…
  • Loading branch information
mruwnik committed Mar 13, 2024
2 parents 10aff05 + 580eccf commit 21c213b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function Search({queryFromUrl, limitFromUrl, removeQueryFromUrl}:
const handleChange = debounce(searchFn, 100)

const handleBlur = () => {
setTimeout(() => setShowResults(false), 100)
setTimeout(() => setShowResults(false), 500)
}

return (
Expand Down

0 comments on commit 21c213b

Please sign in to comment.