From 74d8ca8fa74b74985c47ab1e2f93c31ebd3a0277 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 20 Mar 2026 11:38:52 -0500 Subject: [PATCH] Increase parent batch size to reduce onStartReached calls (#10086) --- 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 a3af956659..385879f31e 100644 --- a/src/screens/PostThread/index.tsx +++ b/src/screens/PostThread/index.tsx @@ -45,7 +45,7 @@ import * as Layout from '#/components/Layout' import {ListFooter} from '#/components/Lists' import {useAnalytics} from '#/analytics' -const PARENT_CHUNK_SIZE = 5 +const PARENT_CHUNK_SIZE = 20 const CHILDREN_CHUNK_SIZE = 50 export function PostThread({uri}: {uri: string}) {