From 9c68768295297b0a80970becf2c42fa9d46c7737 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Thu, 5 Mar 2026 20:53:05 -0500 Subject: [PATCH] Fix episode progress display in seasons: show mark-all for all users, simplify progress indicators Remove the `userStatus` guard on the "Mark All" button so unauthenticated or unwatchlisted users can also access it. Drop the mobile percentage label (redundant with the watch count) and make the watched/total count always visible instead of hidden on small screens. --- .../titles/[id]/_components/title-seasons.tsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/app/(pages)/titles/[id]/_components/title-seasons.tsx b/app/(pages)/titles/[id]/_components/title-seasons.tsx index e176269..37279c6 100644 --- a/app/(pages)/titles/[id]/_components/title-seasons.tsx +++ b/app/(pages)/titles/[id]/_components/title-seasons.tsx @@ -68,7 +68,7 @@ export function TitleSeasons({

Episodes

- {userStatus && userStatus !== "completed" && ( + {userStatus !== "completed" && (
{totalCount > 0 && ( - <> - - {Math.round(progressPercent)}% - -
- -
- +
+ +
)} {totalCount > 0 && watchedCount < totalCount && (