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 =
bitbucketProvider.bitbucketWorkspaceName ||
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 {
const response = await fetch(url, {