From cc866d2028cb28736988cd779dd5c31d1b78b0d2 Mon Sep 17 00:00:00 2001 From: moonyah Date: Thu, 13 Jun 2024 14:36:26 +0900 Subject: [PATCH] [Chore] Fix --- src/app/community/components/club/clubMenu/AllMenu.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/community/components/club/clubMenu/AllMenu.tsx b/src/app/community/components/club/clubMenu/AllMenu.tsx index 141ee52..855741a 100644 --- a/src/app/community/components/club/clubMenu/AllMenu.tsx +++ b/src/app/community/components/club/clubMenu/AllMenu.tsx @@ -18,7 +18,13 @@ export default function AllMenu() { console.log('Fetching clubs with params:', params.toString()); - const response = await API.get(`/club/authenticated/search`, { params }); + const response = await API.get( + `/club/authenticated/search?size=60 + `, + { + params, + }, + ); const data = response.data; console.log('API Response:', data);