Skip to content

Commit

Permalink
Merge pull request #193 from Genti2024/dev
Browse files Browse the repository at this point in the history
Fix: #185 정방형 이미지 5장만 응답하도록 수정
  • Loading branch information
LeeJae-H authored Oct 31, 2024
2 parents 8898c95 + 7d0c506 commit 08e6e4c
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 08e6e4c

Please sign in to comment.