From 4b7dea1bc5e9663a71c68dd4b22cb9520229d840 Mon Sep 17 00:00:00 2001 From: tapframe Date: Sat, 21 Jun 2025 16:15:53 +0530 Subject: [PATCH] Update ContinueWatchingSection to display all items without limit This change modifies the ContinueWatchingSection component to show all continue watching items instead of limiting the display to 10. This adjustment enhances user experience by providing access to the complete list of items being watched. --- src/components/home/ContinueWatchingSection.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/home/ContinueWatchingSection.tsx b/src/components/home/ContinueWatchingSection.tsx index b86e543..e995586 100644 --- a/src/components/home/ContinueWatchingSection.tsx +++ b/src/components/home/ContinueWatchingSection.tsx @@ -187,10 +187,8 @@ const ContinueWatchingSection = React.forwardRef((props, re // Sort by last updated time (most recent first) progressItems.sort((a, b) => b.lastUpdated - a.lastUpdated); - // Limit to 10 items - const finalItems = progressItems.slice(0, 10); - - setContinueWatchingItems(finalItems); + // Show all continue watching items (no limit) + setContinueWatchingItems(progressItems); } catch (error) { logger.error('Failed to load continue watching items:', error); } finally {