Skip to content

Commit

Permalink
[FIX] 튜토리얼 상황에서 상대방 정보도 뜨게 변경 #130
Browse files Browse the repository at this point in the history
  • Loading branch information
ddongseop committed Feb 27, 2024
1 parent dceb65e commit 3e65260
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ public static TodayQnAResponseDto of(User myUser, User opponentUser, int count,
.index(count)
.section(todayQuestion.getSection().getValue())
.topic(todayQuestion.getTopic())
.opponentQuestion(null)
.opponentQuestion(opponentQuestion)
.myQuestion(myQuestion)
.opponentAnswer(null)
.opponentAnswer(opponentAnswer)
.myAnswer(myAnswer)
.isOpponentAnswer(null)
.isOpponentAnswer(isOpponentAnswer)
.isMyAnswer(isMyAnswer)
.opponentUsername(null)
.opponentUsername("상대방")
.myUsername(myUser.getUsername())
.build();
}
Expand Down

0 comments on commit 3e65260

Please sign in to comment.