Skip to content

Commit

Permalink
Fix highlighting b/c that lines actually changed as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed Apr 5, 2022
1 parent d189025 commit d44c793
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/tutorial/chapter6/multiple-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,13 @@ const Article = ({ article, summary = false }) => {
<div className="mt-2 text-gray-900 font-light">
{summary ? truncate(article.body, 100) : article.body}
</div>
// highlight-start
{!summary && (
// highlight-start
<div className="mt-12">
<CommentsCell />
</div>
// highlight-end
)}
// highlight-end
</article>
)
}
Expand Down

0 comments on commit d44c793

Please sign in to comment.