diff --git a/apps/portal/src/components/questions/card/AnswerCard.tsx b/apps/portal/src/components/questions/card/AnswerCard.tsx index 1745522e..16088f3c 100644 --- a/apps/portal/src/components/questions/card/AnswerCard.tsx +++ b/apps/portal/src/components/questions/card/AnswerCard.tsx @@ -7,6 +7,7 @@ import VotingButtons from '../VotingButtons'; export type AnswerCardProps = { authorImageUrl: string; authorName: string; + commentCount: number; content: string; createdAt: Date; upvoteCount: number; @@ -18,9 +19,10 @@ function AnswerCardWithoutHref({ upvoteCount, content, createdAt, + commentCount, }: AnswerCardProps) { return ( -
{content}
++ {commentCount} comment(s) +