We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae93844 commit d97b915Copy full SHA for d97b915
src/components/community/postDetail/Comment.tsx
@@ -15,7 +15,7 @@ const CommentList: FC<postProps> = ({ characterId, postId }) => {
15
const { loading, comments, fetchComments } = useCommentStore();
16
useEffect(() => {
17
if (characterId && postId) {
18
- fetchComments(characterId, postId);
+ fetchComments(postId);
19
}
20
}, [characterId, postId, fetchComments]);
21
0 commit comments