Skip to content

Commit

Permalink
chore: 한 페이지에 들어갈 꽃 개수 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
qormoon committed Jul 14, 2024
1 parent 0bc0f00 commit 8228316
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class DictionaryController implements DictionaryApi {

@Override
public ResponseEntity<List<DictionaryResponseDTO>> getAllFlowers(int page) {
int size = 8; // 한 페이지에 보여줄 꽃의 개수
int size = 12; // 한 페이지에 보여줄 꽃의 개수
List<DictionaryResponseDTO> flowers = dictionaryService.getAllFlowers(page, size);
return ResponseEntity.ok(flowers);
}
Expand Down

0 comments on commit 8228316

Please sign in to comment.