From 1fea99e2e8f6a1c000f34069bc18777af09cdbff Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 27 May 2025 23:36:23 -0500 Subject: [PATCH] Update APIs --- src/screens/PostThread/components/ThreadPost.tsx | 10 ++++++---- src/state/queries/usePostThread/index.ts | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/screens/PostThread/components/ThreadPost.tsx b/src/screens/PostThread/components/ThreadPost.tsx index 2039fc6e34..ad4aa3619b 100644 --- a/src/screens/PostThread/components/ThreadPost.tsx +++ b/src/screens/PostThread/components/ThreadPost.tsx @@ -191,9 +191,10 @@ let PostThreadItemLoaded = ({ paddingHorizontal: OUTER_SPACE, }, // If there's no next child, add a little padding to bottom - !item.ui.showChildReplyLine && { - paddingBottom: OUTER_SPACE / 2, - }, + !item.ui.showChildReplyLine && + !item.ui.precedesChildReadMore && { + paddingBottom: OUTER_SPACE / 2, + }, ]}> - {item.ui.showChildReplyLine && ( + {(item.ui.showChildReplyLine || + item.ui.precedesChildReadMore) && (