diff --git a/src/views/profile/profile.tsx b/src/views/profile/profile.tsx
index 2dbda6d3..61601d96 100644
--- a/src/views/profile/profile.tsx
+++ b/src/views/profile/profile.tsx
@@ -95,7 +95,7 @@ const PaginationControls = ({ currentPage, hasMore, onPageChange }: { currentPag
const CommentItem = ({ cid }: { cid: string }) => {
const comment = useComment({ commentCid: cid });
- if (!comment) return null;
+ if (!comment || !comment.subplebbitAddress) return null;
return comment.parentCid ? : ;
};