Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
chore(react-client): returned null
Browse files Browse the repository at this point in the history
  • Loading branch information
RinkiyaKeDad authored and wtrocki committed Dec 18, 2020
1 parent a33aaa0 commit 186f560
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const OneNote = ({ _id, title, description, comments }: Note) => {
<ul>
{comments && comments.length > 0 ? comments.map((com) => {
if (!com) {
return;
return null;
}
return (
<OneComment _id={com._id} text={com.text} description={com.description} key={com._id}></OneComment>
Expand Down

0 comments on commit 186f560

Please sign in to comment.