Skip to content

Commit

Permalink
Fix: #185 정방형 이미지 5장만 응답하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJae-H committed Oct 31, 2024
1 parent 8898c95 commit 7d0c506
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ public List<ExampleWithSquarePicture> getAllResponseExamplesInGenerateView() {
.collect(Collectors.toList());
Collections.shuffle(examples);

return examples;
return examples.subList(0, 5);
}
}

0 comments on commit 7d0c506

Please sign in to comment.