Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert PostThread parent chunk size for native (#10193)

authored by

Eric Bailey and committed by
GitHub
8bd6d9d1 5868804d

+2 -1
+2 -1
src/screens/PostThread/index.tsx
··· 52 52 import * as Layout from '#/components/Layout' 53 53 import {ListFooter} from '#/components/Lists' 54 54 import {useAnalytics} from '#/analytics' 55 + import {IS_NATIVE} from '#/env' 55 56 56 - const PARENT_CHUNK_SIZE = 20 57 + const PARENT_CHUNK_SIZE = IS_NATIVE ? 5 : 20 57 58 const CHILDREN_CHUNK_SIZE = 50 58 59 59 60 export function PostThread({uri}: {uri: string}) {