From da2b6f4797f55d4c2437f4ad32c94777eacfbf2c Mon Sep 17 00:00:00 2001 From: Seth Wood Date: Thu, 6 Mar 2025 10:10:39 -0800 Subject: fixing moderation blur gap when replying via the thread feed (#7783) --- src/view/com/post-thread/PostThread.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') 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 = -- cgit 1.4.1