lint && git push

This commit is contained in:
“spicecat” 2022-08-02 17:07:00 -05:00
commit 100139f43c
2 changed files with 4 additions and 3 deletions

View file

@ -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 (

View file

@ -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}>