diff --git a/package.json b/package.json index 5b49df7..5836f61 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bluesky-comments", - "version": "0.5.0", + "version": "0.5.1", "description": "Embed Bluesky comments on your website", "main": "./dist/bluesky-comments.umd.js", "module": "./dist/bluesky-comments.es.js", diff --git a/src/CommentSection.tsx b/src/CommentSection.tsx index c5ee611..b0c6753 100644 --- a/src/CommentSection.tsx +++ b/src/CommentSection.tsx @@ -154,7 +154,6 @@ export const CommentSection = ({ uri: propUri, author, onEmpty, commentFilters }
{sortedReplies.slice(0, visibleCount).map((reply) => { - console.log(reply); if (!AppBskyFeedDefs.isThreadViewPost(reply)) return null; return ; })} @@ -177,7 +176,6 @@ const Comment = ({ comment, filters }: { comment: AppBskyFeedDefs.ThreadViewPost // filter out replies that match any of the commentFilters, by ensuring they all return false if (filters && !filters.every((filter) => !filter(comment))) return null; - console.log('rendering', comment); return (