Skip to content

Commit

Permalink
🐛 fix: 메인 퀴즈리스트 >태그 출력 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
minsgy committed Nov 24, 2023
1 parent 2b721f4 commit a898f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/useQuizListInfinityQuery/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const useQuizListInfinityQuery = () => {
const formatterQuizList = flattenContents.map(
({ quiz, category, quizReplyHistoryCount, quizCommentCount }) => ({
id: quiz.id,
categoryTitle: category.name,
categoryTitle: [category.name, ...quiz.tags].join(' '),
likeCount: quizReplyHistoryCount,
commentCount: quizCommentCount,
quizDescription: quiz.question.question,
Expand Down

0 comments on commit a898f91

Please sign in to comment.