From 25ec9c4348e300ed370995876ff093c5662b8103 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sun, 1 Feb 2026 12:39:05 +0100 Subject: [PATCH] fix(tv): remove automatic scroll triggers on series page --- components/series/TVSeriesPage.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/components/series/TVSeriesPage.tsx b/components/series/TVSeriesPage.tsx index 83c1401a..ce179c0d 100644 --- a/components/series/TVSeriesPage.tsx +++ b/components/series/TVSeriesPage.tsx @@ -256,20 +256,12 @@ export const TVSeriesPage: React.FC = ({ useEffect(() => { if (prevFocusedCount.current > 0 && focusedCount === 0) { episodeListRef.current?.scrollTo({ x: 0, animated: true }); - // Scroll page back to top when leaving episode section - mainScrollRef.current?.scrollTo({ y: 0, animated: true }); } prevFocusedCount.current = focusedCount; }, [focusedCount]); const handleEpisodeFocus = useCallback(() => { - setFocusedCount((c) => { - // Scroll page down when first episode receives focus - if (c === 0) { - mainScrollRef.current?.scrollTo({ y: 200, animated: true }); - } - return c + 1; - }); + setFocusedCount((c) => c + 1); }, []); const handleEpisodeBlur = useCallback(() => {