diff options
Diffstat (limited to 'src/view/screens/DebugMod.tsx')
-rw-r--r-- | src/view/screens/DebugMod.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/screens/DebugMod.tsx b/src/view/screens/DebugMod.tsx index 77b07b8c9..7d0d2fb03 100644 --- a/src/view/screens/DebugMod.tsx +++ b/src/view/screens/DebugMod.tsx @@ -813,6 +813,7 @@ function MockPostFeedItem({ function MockPostThreadItem({ post, + moderation, reply, }: { post: AppBskyFeedDefs.PostView @@ -824,12 +825,14 @@ function MockPostThreadItem({ // @ts-ignore post={post} record={post.record as AppBskyFeedPost.Record} + moderation={moderation} depth={reply ? 1 : 0} isHighlightedPost={!reply} treeView={false} prevPost={undefined} nextPost={undefined} hasPrecedingItem={false} + overrideBlur={false} onPostReply={() => {}} /> ) |