From 14e5395b34f6921fadc23af2f0dad04de6eca261 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Mon, 2 Mar 2026 23:35:43 +0530 Subject: [PATCH] syntax --- src/components/home/ContinueWatchingSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/home/ContinueWatchingSection.tsx b/src/components/home/ContinueWatchingSection.tsx index b435db2a6..9ff60bbd0 100644 --- a/src/components/home/ContinueWatchingSection.tsx +++ b/src/components/home/ContinueWatchingSection.tsx @@ -1196,8 +1196,8 @@ const ContinueWatchingSection = React.forwardRef((props, re // Always preferring local was wrong: if you watched on another device, // Trakt's paused_at is newer and should win for ordering purposes. const mergedLastUpdated = Math.max( - it.lastUpdated ?? 0, - mostRecentLocal.lastUpdated ?? 0 + (it.lastUpdated ?? 0), + (mostRecentLocal.lastUpdated ?? 0) ); try {