From 8bd6d9d135bfdc5bf6ece95ef4e9424e4abebb30 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 7 Apr 2026 10:58:47 -0500 Subject: [PATCH] Revert PostThread parent chunk size for native (#10193) --- src/screens/PostThread/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/screens/PostThread/index.tsx b/src/screens/PostThread/index.tsx index c3c9405287..64d6529728 100644 --- a/src/screens/PostThread/index.tsx +++ b/src/screens/PostThread/index.tsx @@ -52,8 +52,9 @@ import {atoms as a, native, platform, useBreakpoints, web} from '#/alf' import * as Layout from '#/components/Layout' import {ListFooter} from '#/components/Lists' import {useAnalytics} from '#/analytics' +import {IS_NATIVE} from '#/env' -const PARENT_CHUNK_SIZE = 20 +const PARENT_CHUNK_SIZE = IS_NATIVE ? 5 : 20 const CHILDREN_CHUNK_SIZE = 50 export function PostThread({uri}: {uri: string}) {