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

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, {