Skip to content

Commit

Permalink
Merge pull request #126 from Linkup-3mw/feature/club
Browse files Browse the repository at this point in the history
[Chore] Fix
  • Loading branch information
moonyah authored Jun 13, 2024
2 parents abfc3f1 + cc866d2 commit 264143c
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 264143c

Please sign in to comment.