From e94426685b54461ddfa5b812bef90132e45d2958 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 20 Mar 2026 11:06:58 -0500 Subject: [PATCH] Increase parent batch size to reduce onStartReached calls --- 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..88239733d8 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 = 10 const CHILDREN_CHUNK_SIZE = 50 export function PostThread({uri}: {uri: string}) {