lint && git push
This commit is contained in:
parent
04435e7616
commit
100139f43c
2 changed files with 4 additions and 3 deletions
|
|
@ -22,7 +22,7 @@ export default function Answer({
|
|||
|
||||
const getVote = () => getAnswerVote(question_id, answer_id);
|
||||
const updateVote = (data) => updateAnswerVote(question_id, answer_id, data);
|
||||
|
||||
|
||||
const postComment = (data) => postAnswerComment(question_id, answer_id, data);
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -63,9 +63,10 @@ export default function Question({
|
|||
}
|
||||
|
||||
const getVote = () => getQuestionVote(question_id);
|
||||
const postComment = (data) => postQuestionComment(question_id, data);
|
||||
const updateVote = (data) => updateQuestionVote(question_id, data);
|
||||
|
||||
|
||||
const postComment = (data) => postQuestionComment(question_id, data);
|
||||
|
||||
return (
|
||||
<>
|
||||
<Box m={2}>
|
||||
|
|
|
|||
Reference in a new issue