We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15498f2 commit 604fd01Copy full SHA for 604fd01
frontend/src/hooks/useFetchData.ts
@@ -110,7 +110,7 @@ export default function useFetchData<T>(
110
status: getFirstOfArray(filter?.status) || undefined,
111
tags: filter?.tags?.length ? filter.tags.join(",") : undefined,
112
page: current - pageOffset,
113
- pageSize: pageSize, // Use camelCase for HTTP query params
+ size: pageSize, // Use camelCase for HTTP query params
114
}),
115
...additionalPollingFuncs.map((func) => func()),
116
];
0 commit comments