From e316b076490f83f8f82d6f62f0c068f0c2294dbf Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Mon, 27 Oct 2025 12:41:05 +0200 Subject: [PATCH] refactor(Video): add !watched check --- src/components/Video/Video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Video/Video.js b/src/components/Video/Video.js index a92567c6e..21415153f 100644 --- a/src/components/Video/Video.js +++ b/src/components/Video/Video.js @@ -73,7 +73,7 @@ const Video = ({ className, id, title, thumbnail, season, episode, released, upc const blurThumbnail = profile.settings.hideSpoilers && season && episode && !watched; React.useEffect(() => { - selected && ref.current?.scrollIntoView({ + selected && !watched && ref.current?.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'start'