diff --git a/src/components/GenericIntersectionObserver.jsx b/src/components/GenericIntersectionObserver.jsx index 8266130..53eceec 100644 --- a/src/components/GenericIntersectionObserver.jsx +++ b/src/components/GenericIntersectionObserver.jsx @@ -12,7 +12,7 @@ const GenericIntersectionObserver = ({ onIntersect, delay = 500 }) => { if (entry.isIntersecting) { debounceTimer = setTimeout(() => { onIntersect() - }, 500) + }, 250) } else { clearTimeout(debounceTimer) } diff --git a/src/pages/Search.jsx b/src/pages/Search.jsx index cdfd719..aad58c4 100644 --- a/src/pages/Search.jsx +++ b/src/pages/Search.jsx @@ -69,7 +69,7 @@ const Search = ({ limit = 5 }) => { limit, orderby: orderBy, exclude: { - tags__slug: 'static', + tags__slug__in: ['static', 'convoy'], }, ...queryParams, offset: limit * (pageParam - 1), @@ -232,7 +232,7 @@ const Search = ({ limit = 5 }) => {