From 427e70e7eff5c6e587f68d7b613f39d5069b1283 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Mon, 29 Jun 2026 10:46:18 +0200 Subject: [PATCH] fix(tv): stop season-select card content from collapsing (flex:1) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The season info container used flex:1 inside the card, but the card is an auto-height column — flex:1 (flexBasis:0) collapsed the box to ~0 height, so the season number and episode count never had room to render (only the explicitly-sized checkmark/status icons showed). Size the container to its content instead. Claude-Session: https://claude.ai/code/session_016Hhu5DruGLPhdP4LAoy1Xd --- app/(auth)/tv-season-select-modal.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/(auth)/tv-season-select-modal.tsx b/app/(auth)/tv-season-select-modal.tsx index 06884c56..830fda34 100644 --- a/app/(auth)/tv-season-select-modal.tsx +++ b/app/(auth)/tv-season-select-modal.tsx @@ -421,7 +421,10 @@ const styles = StyleSheet.create({ marginBottom: 8, }, seasonInfo: { - flex: 1, + // Note: no `flex: 1` here — the card is an auto-height column, so flex:1 + // (flexBasis: 0) would collapse this box and hide the text. Let it size to + // its content instead. + alignSelf: "stretch", }, seasonTitle: { fontWeight: "600",