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}) {