update usePostThreadQuery to check quote query data (#4975)

* update `usePostThreadQuery` to check quote query data

* search notifs before quotes

* oops
This commit is contained in:
Hailey 2024-08-22 11:11:51 -07:00 committed by GitHub
parent 92989282ae
commit df5bf28e61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -75,8 +75,8 @@ export async function getAllListMembers(agent: BskyAgent, uri: string) {
listItems.push(...res.data.items)
hasMore = Boolean(res.data.cursor)
cursor = res.data.cursor
i++
}
i++
return listItems
}