작성
·
260
2
9분:15초쯤 commented on다음에 작성코드
[변경전]
<span>commented on</span>
<Link
href={`/u/${comment.post?.url}`}
className="cursor-pointer font-semibold hover:underline"
>
{comment.post?.title}
</Link>
[변경후]
<span>commented on</span>
<Link
href={`${comment.post?.url}`}
className="cursor-pointer font-semibold hover:underline"
>
{comment.post?.title}
</Link>
답변 2
1
항상 좋은 강의 감사합니다 :)