Set to default params, update comment

This commit is contained in:
Eric Bailey
2025-05-29 16:43:07 -05:00
parent 9ca42f20a4
commit 412b9943b5
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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,
})