diff --git a/components/CommentList/CommentList.tsx b/components/CommentList/CommentList.tsx index a10cd386f..ec88d49dc 100644 --- a/components/CommentList/CommentList.tsx +++ b/components/CommentList/CommentList.tsx @@ -10,7 +10,7 @@ interface CommentListProps { function CommentList({ commentList: comments }: CommentListProps) { return ( -
+
{!!comments.length ? ( ) : ( -
+ // TODO: EmptyContent 컴포넌트 빼내기 가능 +
아직 문의가 없습니다 -
아직 문의가 없습니다.
+
+ 아직 문의가 없습니다. +
)}
diff --git a/next.config.js b/next.config.js index b666e541d..bddb0844a 100644 --- a/next.config.js +++ b/next.config.js @@ -2,7 +2,10 @@ const nextConfig = { reactStrictMode: true, images: { - domains: ["sprint-fe-project.s3.ap-northeast-2.amazonaws.com"], + domains: [ + "sprint-fe-project.s3.ap-northeast-2.amazonaws.com", + "flexible.img.hani.co.kr", + ], }, }; diff --git a/pages/board/[id].tsx b/pages/board/[id].tsx index 20d18fe69..1226b06d0 100644 --- a/pages/board/[id].tsx +++ b/pages/board/[id].tsx @@ -50,7 +50,9 @@ function DetailBoard({
- +
+ +
);