Skip to content

Commit

Permalink
Merge pull request #23 from NARAE-FLIWITH/bug/askList
Browse files Browse the repository at this point in the history
bug: AI 추천 후보 리스트 5개로 축소
  • Loading branch information
jjunjji authored Jul 21, 2024
2 parents 0cf0ee9 + 229279a commit 003813e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,12 @@ public TourDetailRes getAiTour(String email, AiTourReq aiTourReq) {
}

pageNo++;
if(askList.size()>=10){
if(askList.size()>=5){
break;
}

} while ((pageNo - 1) * itemsPerPage < totalItems);
if(askList.size()>=10){
if(askList.size()>=5){
break;
}
}
Expand Down

0 comments on commit 003813e

Please sign in to comment.