diff --git a/src/state/queries/usePostThread/index.ts b/src/state/queries/usePostThread/index.ts index 2fa1d0549c..abbe1eda32 100644 --- a/src/state/queries/usePostThread/index.ts +++ b/src/state/queries/usePostThread/index.ts @@ -41,8 +41,8 @@ export function usePostThread({ async queryFn() { const {data} = await agent.app.bsky.unspecced.getPostThreadV2({ anchor: params.anchor!, - branchingFactor: params.view === 'linear' ? 1 : 3, // 100 TODO - below: 3, + branchingFactor: params.view === 'linear' ? 1 : undefined, + below: 10, sort: params.sort, prioritizeFollowedUsers: params.prioritizeFollowedUsers, }) diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index 1d22893340..2eca26d409 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -304,7 +304,7 @@ export function PostThread({uri}: {uri: string | undefined}) { // When progressively revealing parents, rendering a placeholder // here will cause scrolling jumps. Don't add it unless you test it. // QT'ing this thread is a great way to test all the scrolling hacks: - // https://bsky.app/profile/www.mozzius.dev/post/3kjqhblh6qk2o + // https://bsky.app/profile/samuel.bsky.team/post/3kjqhblh6qk2o // Everything is loaded let startIndex = Math.max(0, parents.length - maxParents)