From a5c2b7d25a03c94e55b3981cbf06ea28f6cbf35c Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Wed, 1 Jul 2026 14:05:36 +0200 Subject: [PATCH] fix(tv): make jellyseerr action buttons the same size Request all / Request seasons wrapped their icon+text in a View with a hardcoded height: 40 and used a smaller icon (20) than Play (28), so the two buttons rendered taller than the Play button. Drop the wrapper and match Play's icon size/margin so all three TVButtons size to the same content and render identically. Claude-Session: https://claude.ai/code/session_016Hhu5DruGLPhdP4LAoy1Xd --- components/jellyseerr/tv/TVJellyseerrPage.tsx | 64 +++++++------------ 1 file changed, 24 insertions(+), 40 deletions(-) diff --git a/components/jellyseerr/tv/TVJellyseerrPage.tsx b/components/jellyseerr/tv/TVJellyseerrPage.tsx index f44c7f8e..30cdd2e4 100644 --- a/components/jellyseerr/tv/TVJellyseerrPage.tsx +++ b/components/jellyseerr/tv/TVJellyseerrPage.tsx @@ -685,29 +685,21 @@ export const TVJellyseerrPage: React.FC = () => { hasTVPreferredFocus={!hasJellyfinMedia} refSetter={!hasJellyfinMedia ? setPlayButtonRef : undefined} > - + - - - {t("jellyseerr.request_all")} - - + {t("jellyseerr.request_all")} + )} @@ -719,29 +711,21 @@ export const TVJellyseerrPage: React.FC = () => { onPress={handleOpenSeasonSelectModal} variant='secondary' > - + - - - {t("jellyseerr.request_seasons")} - - + {t("jellyseerr.request_seasons")} + )}