I have the following error show up in the console.
if (isReply && detailView) {
replyUsername = (
<Link to={`/${username}/status/${id}`}>
<Link to={`/${parentUsername}`}><p>Replying to {parentUsername}</p></Link>
<Link to={`/${username}`}><p>{username}</p></Link>
<p>{date}</p>
<p>{text}</p>
<p>{replies.length} {likes.length}</p>
</Link>
)
}
Is there a way to work around this? This is what it looks like when rendered. Clicking on the white space links to the status itself and I also want to be able to link to the usernames.