diff --git a/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx b/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx --- a/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx +++ b/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx @@ -52,42 +52,21 @@ const url = `https://bsky.app/profile/${post.author.handle}/post/${postId}`; return ( -
+ // pointer events non so that is there is a replyLine, it can be clicked even though its underneath the postContent (buttons here have pointer-events-auto applied to make them clickable) +
-
- {replyLine && ( - - )} +
- {replyLine && ( - - )}
)} +
0 && "pointer-events-none"}`} + > + { + e.preventDefault(); + props.toggleCollapsed(post.post.uri); + console.log(post.post.uri); + }} + onEmbedClick={(e) => e.stopPropagation()} + className="text-sm" + /> + {hasReplies && props.depth < 3 && ( +
+ {!props.isCollapsed && ( +
+ +
+ )} +
+ )} +
); };