From e00ab1f89b7a7de89cc2cd72d222bd1a1b9ed4de Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 9 Jun 2025 18:16:09 -0500 Subject: [PATCH] Remove uneeded initialized value --- src/screens/PostThread/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/PostThread/index.tsx b/src/screens/PostThread/index.tsx index de9096bd93..1414438ef6 100644 --- a/src/screens/PostThread/index.tsx +++ b/src/screens/PostThread/index.tsx @@ -121,7 +121,7 @@ export function Inner({uri}: {uri: string | undefined}) { * this is always true. And when a user changes thread parameters, we also * manually set this to true. */ - const shouldHandleScroll = useRef(!isRoot) + const shouldHandleScroll = useRef(true) /** * Called any time the content size of the list changes, _just_ before paint. *