diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/com/post-thread/PostThread.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index ca77e3404..3c737a2f4 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -406,10 +406,11 @@ export function PostThread({uri}: {uri: string | undefined}) { text: thread.record.text, author: thread.post.author, embed: thread.post.embed, + moderation: threadModerationCache.get(thread), }, onPost: onPostReply, }) - }, [openComposer, thread, onPostReply]) + }, [openComposer, thread, onPostReply, threadModerationCache]) const canReply = !error && rootPost && !rootPost.viewer?.replyDisabled const hasParents = |