Skip to content

Commit 3b58d65

Browse files
committed
chore: valid size parameter
1 parent 5aad5d9 commit 3b58d65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/registry-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const ax = axiosBuilder({
2121

2222
export const listArtefacts = async (query: Record<string, string | number>): Promise<Artefact[]> => {
2323
const res = await ax.get<ListResponse>('/api/v1/artefacts', {
24-
params: { ...query, size: 1000 }
24+
params: { ...query, size: 100 }
2525
})
2626
return res.data.results
2727
}

0 commit comments

Comments
 (0)