From 8228316fceb1439830e61ded0c4902bfad5b3b55 Mon Sep 17 00:00:00 2001 From: jihyeon baek Date: Sun, 14 Jul 2024 16:55:32 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=ED=95=9C=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=EC=97=90=20=EB=93=A4=EC=96=B4=EA=B0=88=20=EA=BD=83=20?= =?UTF-8?q?=EA=B0=9C=EC=88=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/dictionary/controller/DictionaryController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/example/fiurinee/domain/dictionary/controller/DictionaryController.java b/src/main/java/com/example/fiurinee/domain/dictionary/controller/DictionaryController.java index b98c872..3c70f1e 100644 --- a/src/main/java/com/example/fiurinee/domain/dictionary/controller/DictionaryController.java +++ b/src/main/java/com/example/fiurinee/domain/dictionary/controller/DictionaryController.java @@ -16,7 +16,7 @@ public class DictionaryController implements DictionaryApi { @Override public ResponseEntity> getAllFlowers(int page) { - int size = 8; // 한 페이지에 보여줄 꽃의 개수 + int size = 12; // 한 페이지에 보여줄 꽃의 개수 List flowers = dictionaryService.getAllFlowers(page, size); return ResponseEntity.ok(flowers); }