···13import {moderatePost_wrapped as moderatePost} from '#/lib/moderatePost_wrapped'
14import {UsePreferencesQueryResponse} from '#/state/queries/preferences/types'
15import {useAgent} from '#/state/session'
016import {
17 findAllPostsInQueryData as findAllPostsInSearchQueryData,
18 findAllProfilesInQueryData as findAllProfilesInSearchQueryData,
···400 yield postViewToPlaceholderThread(post)
401 }
402 for (let post of findAllPostsInNotifsQueryData(queryClient, uri)) {
000403 yield postViewToPlaceholderThread(post)
404 }
405 for (let post of findAllPostsInSearchQueryData(queryClient, uri)) {
···13import {moderatePost_wrapped as moderatePost} from '#/lib/moderatePost_wrapped'
14import {UsePreferencesQueryResponse} from '#/state/queries/preferences/types'
15import {useAgent} from '#/state/session'
16+import {findAllPostsInQueryData as findAllPostsInQuoteQueryData} from 'state/queries/post-quotes'
17import {
18 findAllPostsInQueryData as findAllPostsInSearchQueryData,
19 findAllProfilesInQueryData as findAllProfilesInSearchQueryData,
···401 yield postViewToPlaceholderThread(post)
402 }
403 for (let post of findAllPostsInNotifsQueryData(queryClient, uri)) {
404+ yield postViewToPlaceholderThread(post)
405+ }
406+ for (let post of findAllPostsInQuoteQueryData(queryClient, uri)) {
407 yield postViewToPlaceholderThread(post)
408 }
409 for (let post of findAllPostsInSearchQueryData(queryClient, uri)) {