0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Removed console log

This commit is contained in:
Simon Backx 2022-07-06 17:36:37 +02:00
parent dc196ddeb1
commit 8e0efd8bfa

View file

@ -3,7 +3,6 @@ import Comment from './Comment';
const Replies = (props) => {
return (
<div>
{console.log(props.replies)}
{props.replies.map((reply => <Comment comment={reply} key={reply.id} />))}
</div>
);