From 0d38e2ab3fbcc35bdba1cc12492be43d063eeccf Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Mon, 1 Jun 2026 10:15:21 -0700 Subject: [PATCH] Show chat info panel for empty chats (#10677) --- src/screens/Messages/components/MessagesList.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/screens/Messages/components/MessagesList.tsx b/src/screens/Messages/components/MessagesList.tsx index e1e4849fc5..99b725267e 100644 --- a/src/screens/Messages/components/MessagesList.tsx +++ b/src/screens/Messages/components/MessagesList.tsx @@ -240,7 +240,11 @@ export function MessagesList({ // Initial scroll to bottom — unconditional, not gated on isAtBottom. This is separated because contentInset // can cause an early onScroll with a negative offset that sets isAtBottom to false before we get here. - if (!hasInitiallyScrolled.current && renderItems.length > 0) { + // Empty convos take this path too (once history is done) so hasScrolled gets set without an animated scroll. + if ( + !hasInitiallyScrolled.current && + (renderItems.length > 0 || !convoState.isFetchingHistory) + ) { hasInitiallyScrolled.current = true flatListRef.current?.scrollToOffset({offset: height, animated: false}) // If history is already done loading, mark ready after a frame for the scroll to settle.