fix trust in threads

This commit is contained in:
hzrd149 2023-11-13 10:06:06 -06:00
parent 4c4eb87e31
commit 7a0e715762

View File

@ -103,7 +103,7 @@ export const ThreadPost = ({ post, initShowReplies, focusId, level = -1 }: Threa
) : (
<>
<NoteCommunityMetadata event={post.event} pl="2" />
<TrustProvider trust={focusId === post.event.id ? true : undefined}>
<TrustProvider trust={focusId === post.event.id ? true : undefined} event={post.event}>
<NoteContents event={post.event} pl="2" />
</TrustProvider>
</>