인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

rhkdtjd_12's profile image
rhkdtjd_12

asked

Node and React series that you can learn by following - Creating a Reddit site (NextJS) (Pages Router)

Creating a User Page UI

오타로 인한 오류 제보 입니다.

Written on

·

289

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>
reactnode.jspostgresqldockertypescript클론코딩next.js

Answer 2

1

johnahn님의 프로필 이미지
johnahn
Instructor

안녕하세요!!
알려주셔서 너무 감사합니다!!!

rhkdtjd_12님의 프로필 이미지
rhkdtjd_12
Questioner

항상 좋은 강의 감사합니다 :)

감사합니다!!

rhkdtjd_12's profile image
rhkdtjd_12

asked

Ask a question