Skip to content

Commit

Permalink
fix: count rendered uncorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
OzakIOne committed Aug 20, 2024
1 parent 1c56fa5 commit 46e10fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function BlogAuthor({
<AuthorName name={name} as={as} />
</MaybeLink>
)}
{count && <AuthorBlogPostCount count={count} />}
{count !== undefined && <AuthorBlogPostCount count={count} />}
</div>
{!!title && <AuthorTitle title={title} />}

Expand Down

0 comments on commit 46e10fb

Please sign in to comment.