Skip to content

Commit 437fddf

Browse files
committed
fix: 댓글 없을 때 문구 삭제
1 parent 3ae5228 commit 437fddf

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/components/features/Comment/CommentSection.tsx

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -251,14 +251,6 @@ export const CommentSection = ({ articleId }: CommentSectionProps) => {
251251
);
252252
})}
253253

254-
{commentItems.length === 0 && (
255-
<EmptyState>
256-
<SText fontSize="13px" color="#999">
257-
아직 댓글이 없어요. 첫 댓글을 남겨보세요!
258-
</SText>
259-
</EmptyState>
260-
)}
261-
262254
{hasNextPage && (
263255
<MoreButton
264256
type="button"
@@ -490,13 +482,6 @@ const MoreButton = styled.button`
490482
cursor: pointer;
491483
`;
492484

493-
const EmptyState = styled.div`
494-
padding: 24px 18px;
495-
border-radius: 16px;
496-
background-color: #f8f8ff;
497-
text-align: center;
498-
`;
499-
500485
const DeleteModalContent = styled.div`
501486
display: flex;
502487
flex-direction: column;

0 commit comments

Comments
 (0)