Skip to content

Commit

Permalink
change banner duration back to 10 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
pdp2121 committed Nov 1, 2024
1 parent 76eb402 commit dff1d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/Header/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export const Search = ({ callback = () => {} }: SearchProps) => {
useEffect(() => {
const timeoutId = setTimeout(() => {
setIsBannerVisible(false)
}, 100000) // Disappear after 10 seconds
}, 10000) // Disappear after 10 seconds

return () => clearTimeout(timeoutId)
}, [])
Expand Down

0 comments on commit dff1d89

Please sign in to comment.