···1717import {findAllPostsInQueryData as findAllPostsInBookmarksQueryData} from '#/state/queries/bookmarks/useBookmarksQuery'
1818import {findAllPostsInQueryData as findAllPostsInExploreFeedPreviewsQueryData} from '#/state/queries/explore-feed-previews'
1919import {findAllPostsInQueryData as findAllPostsInNotifsQueryData} from '#/state/queries/notifications/feed'
2020+import {findAllPostsInQueryData as findAllPostsInPostQueryData} from '#/state/queries/post'
2021import {findAllPostsInQueryData as findAllPostsInFeedQueryData} from '#/state/queries/post-feed'
2122import {findAllPostsInQueryData as findAllPostsInQuoteQueryData} from '#/state/queries/post-quotes'
2223import {findAllPostsInQueryData as findAllPostsInSearchQueryData} from '#/state/queries/search-posts'
···260261 yield postViewToThreadPlaceholder(post)
261262 }
262263 for (let post of findAllPostsInSearchQueryData(queryClient, uri)) {
264264+ yield postViewToThreadPlaceholder(post)
265265+ }
266266+ for (let post of findAllPostsInPostQueryData(queryClient, uri)) {
263267 yield postViewToThreadPlaceholder(post)
264268 }
265269 for (let post of findAllPostsInBookmarksQueryData(queryClient, uri)) {