Merge pull request #522 from lorenzomigliorero/fix/bitbucket-repositories-length

fix: bitbucket repositories length
This commit is contained in:
Mauricio Siu 2024-10-03 11:00:25 -06:00 committed by GitHub
commit a73af1d578
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -225,7 +225,7 @@ export const getBitbucketRepositories = async (bitbucketId?: string) => {
const username = const username =
bitbucketProvider.bitbucketWorkspaceName || bitbucketProvider.bitbucketWorkspaceName ||
bitbucketProvider.bitbucketUsername; bitbucketProvider.bitbucketUsername;
const url = `https://api.bitbucket.org/2.0/repositories/${username}`; const url = `https://api.bitbucket.org/2.0/repositories/${username}?pagelen=100`;
try { try {
const response = await fetch(url, { const response = await fetch(url, {