Skip to content

Commit

Permalink
fix: PostComment 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ymj07168 committed Oct 25, 2024
1 parent 43fcc01 commit fd9373c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/postdetail/PostComment.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";

const PostComment = ({
key,
id,
content,
createdAt,
Expand All @@ -19,7 +20,7 @@ const PostComment = ({
<>
<div
className="flex flex-col justify-items-start py-4 px-1 border border-b-gray-3 min-h-[140px] border-x-0 border-t-0"
key={id}
key={key}
id={id}
>
<div className="flex flex-row items-center">
Expand Down

0 comments on commit fd9373c

Please sign in to comment.