Skip to content

Commit

Permalink
[Chore] Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
moonyah committed Jun 13, 2024
1 parent abfc3f1 commit cc866d2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/community/components/club/clubMenu/AllMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit cc866d2

Please sign in to comment.