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 813e738 commit 811019dCopy full SHA for 811019d
.changeset/tired-lines-rhyme.md
@@ -0,0 +1,5 @@
1
+---
2
+'@clerk/clerk-js': patch
3
4
+
5
+Added temporary patch for API keys pagination compatibility
packages/clerk-js/src/core/modules/apiKeys/index.ts
@@ -43,6 +43,8 @@ export class APIKeys implements APIKeysNamespace {
43
path: '/api_keys',
44
search: {
45
subject: params?.subject ?? BaseResource.clerk.organization?.id ?? BaseResource.clerk.user?.id ?? '',
46
+ // TODO: (rob) Remove when server-side pagination is implemented.
47
+ limit: '100',
48
},
49
})
50
.then(res => {
0 commit comments