From 8bd6d9d135bfdc5bf6ece95ef4e9424e4abebb30 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 07 Apr 2026 15:58:47 +0000 Subject: [PATCH] Revert PostThread parent chunk size for native (#10193) --- src/screens/PostThread/index.tsx | 3 ++- 1 file(s) changed, 2 insertion(s)(+), 1 deletion(s)(-) diff --git a/src/screens/PostThread/index.tsx b/src/screens/PostThread/index.tsx --- 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}) { -- tangled.sh