From 87931064fafa2863ceee1203ff7fdd026a254ce3 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Mon, 2 Mar 2026 23:56:50 +0530 Subject: [PATCH] completely revert all changes for sort order --- 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 9ff60bbd..53d1ab40 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) + (mostRecentLocal.lastUpdated ?? 0), + (it.lastUpdated ?? 0) ); try {