Skip to content

Commit d97b915

Browse files
committed
Fix: 함수 인자 변경 실수 (빌드에서 발견)
1 parent ae93844 commit d97b915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/community/postDetail/Comment.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const CommentList: FC<postProps> = ({ characterId, postId }) => {
1515
const { loading, comments, fetchComments } = useCommentStore();
1616
useEffect(() => {
1717
if (characterId && postId) {
18-
fetchComments(characterId, postId);
18+
fetchComments(postId);
1919
}
2020
}, [characterId, postId, fetchComments]);
2121

0 commit comments

Comments
 (0)