handle undefined values, clarify comment

This commit is contained in:
Tom (plebeius.eth)
2024-06-15 12:37:45 +02:00
parent efc9a98f47
commit cadddcb4c5
4 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import { flattenCommentsPages } from '@plebbit/plebbit-react-hooks/dist/lib/util
const useCountLinksInReplies = (comment: Comment, firstXReplies?: number) => {
let linkCount = 0;
const flattenedReplies = useMemo(() => flattenCommentsPages(comment.replies), [comment.replies]);
const flattenedReplies = useMemo(() => flattenCommentsPages(comment?.replies), [comment?.replies]);
const repliesToConsider = firstXReplies !== undefined ? flattenedReplies.slice(0, firstXReplies) : flattenedReplies;