fix(gitlab): remove debug console logs from connection testing

This commit is contained in:
Mauricio Siu
2025-03-06 22:27:30 -06:00
parent f544efed35
commit 6166963b00

View File

@@ -409,8 +409,6 @@ export const testGitlabConnection = async (
const gitlabProvider = await findGitlabById(gitlabId);
console.log(gitlabProvider);
const response = await fetch(
`${gitlabProvider.gitlabUrl}/api/v4/projects?membership=true&owned=true&page=${0}&per_page=${100}`,
{
@@ -429,8 +427,6 @@ export const testGitlabConnection = async (
const repositories = await response.json();
console.log(repositories);
const filteredRepos = repositories.filter((repo: any) => {
const { full_path, kind } = repo.namespace;