diff --git a/src/components/shorts/ShortsLayout.tsx b/src/components/shorts/ShortsLayout.tsx index b824168..57fb0ac 100644 --- a/src/components/shorts/ShortsLayout.tsx +++ b/src/components/shorts/ShortsLayout.tsx @@ -47,7 +47,7 @@ export default function ShortsLayout({ return (
{ diff --git a/src/hooks/common/usePrefetchContentOnView.ts b/src/hooks/common/usePrefetchContentOnView.ts index da01384..b309b18 100644 --- a/src/hooks/common/usePrefetchContentOnView.ts +++ b/src/hooks/common/usePrefetchContentOnView.ts @@ -9,11 +9,7 @@ import type { ReviewListResponse } from "@/types/content"; export const usePrefetchContentOnView = (contentId: string) => { const queryClient = useQueryClient(); - const { ref, isIntersecting } = useLazyIntersectionObserver({ - threshold: 0.1, - rootMargin: "100px", - triggerOnce: true, - }); + const { ref, isIntersecting } = useLazyIntersectionObserver(); useEffect(() => { if (!isIntersecting) return;