Skip to content

Commit

Permalink
Fix: readQuestionsInWorkbook 문제 안읽히는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
RinRinPARK committed Sep 30, 2024
1 parent 18aa5f2 commit 98301a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class QuestionSetCustomRepositoryImpl(
val questionSets: MutableList<QuestionSet> =
jpaQueryFactory
.selectFrom(questionSet)
.where(questionSet.id.eq(workbookId))
.where(questionSet.workbook.id.eq(workbookId))
.orderBy(questionSet.sequence.asc())
.fetch()

Expand Down

0 comments on commit 98301a6

Please sign in to comment.