You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When searching in the tasks and notes pages, the URL changes correctly and the content updates to show the correct data. However it reverts back to a no-search state after a couple of seconds.
When searching in the tasks and notes pages, the URL changes correctly and the content updates to show the correct data. However it reverts back to a no-search state after a couple of seconds.
`const [query, setQuery] = useState("");
const router = useRouter();
const searchParams = useSearchParams();
useEffect(() => {
const delayDebounceFn = setTimeout(() => {
let newUrl = "";
}, [query, searchParams, router]);`
The text was updated successfully, but these errors were encountered: