Skip to content

Commit

Permalink
fix: 질문 번호가 잘못 출력되는 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chysis committed Aug 8, 2024
1 parent 0255acf commit b3dd5b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const ReviewWritingContents = () => {
return (
<>
<p>
{question.id + 1}. {question.content}
{index + 1}. {question.content}
</p>
<LongReviewItem
key={index}
Expand Down

0 comments on commit b3dd5b0

Please sign in to comment.