Fix highlighted post calc

This commit is contained in:
Eric Bailey
2025-05-23 09:33:35 -05:00
parent 2183de7452
commit 9e9ab55027
3 changed files with 19 additions and 13 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ export function usePostThread({
async queryFn() {
const {data} = await agent.app.bsky.unspecced.getPostThreadV2({
anchor: uri!,
branchingFactor: params.view === 'linear' ? 1 : 10,
branchingFactor: params.view === 'linear' ? 1 : 100,
below: 10,
sorting: mapSortOptionsToSortID(params.sort),
})