refactor(Video): add !watched check

This commit is contained in:
Timothy Z. 2025-10-27 12:41:05 +02:00
parent 8ab582080d
commit e316b07649

View file

@ -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'