Skip to content

Commit

Permalink
Fix: 함수 인자 변경 실수 (빌드에서 발견)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulchicken committed Nov 3, 2023
1 parent ae93844 commit d97b915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/community/postDetail/Comment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CommentList: FC<postProps> = ({ characterId, postId }) => {
const { loading, comments, fetchComments } = useCommentStore();
useEffect(() => {
if (characterId && postId) {
fetchComments(characterId, postId);
fetchComments(postId);
}
}, [characterId, postId, fetchComments]);

Expand Down

0 comments on commit d97b915

Please sign in to comment.