fix(search-spaces): correct pagination params to use skip/limit instead of page/page_size

This commit is contained in:
CREDO23 2025-12-11 20:50:04 +00:00
parent 58a14f422d
commit b4874111e2

View file

@ -6,8 +6,9 @@ import { cacheKeys } from "@/lib/query-client/cache-keys";
// Atom to store current query params for search spaces
export const searchSpacesQueryParamsAtom = atom<GetSearchSpacesRequest["queryParams"]>({
page: 0,
page_size: 10,
skip: 0,
limit: 10,
owned_only: false,
});
// Query atom to fetch search spaces with query params