diff --git a/src/views/thread/components/thread-post.tsx b/src/views/thread/components/thread-post.tsx index 4cb6abc57..ebc38d872 100644 --- a/src/views/thread/components/thread-post.tsx +++ b/src/views/thread/components/thread-post.tsx @@ -71,8 +71,6 @@ export const ThreadPost = memo(({ post, initShowReplies, focusId, level = -1 }: ); - if (isMuted && replies.length === 0) return null; - const colorProps = useThreadColorLevelProps(level, focusId === post.event.id); const header = ( @@ -139,6 +137,8 @@ export const ThreadPost = memo(({ post, initShowReplies, focusId, level = -1 }: const ref = useRef(null); useRegisterIntersectionEntity(ref, post.event.id); + if (isMuted && replies.length === 0) return null; + return ( <> Loading note )} - {/* - {JSON.stringify({ pointer, rootId, focused: focusedEvent?.id, refs, timelineId, events: events.length }, null, 2)} - */} {focusedEvent && rootId ? (