From f582198055986e01a1ed30686f330da67cbefc41 Mon Sep 17 00:00:00 2001 From: Benjamin Janssens Date: Wed, 4 Sep 2024 09:48:02 +0200 Subject: [PATCH] fix: remove debugging console.log Signed-off-by: Benjamin Janssens --- .../src/actions/bitbucketCloudPullRequest.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/scaffolder-backend-module-bitbucket-cloud/src/actions/bitbucketCloudPullRequest.ts b/plugins/scaffolder-backend-module-bitbucket-cloud/src/actions/bitbucketCloudPullRequest.ts index 033eb59b6c..faec1b6da8 100644 --- a/plugins/scaffolder-backend-module-bitbucket-cloud/src/actions/bitbucketCloudPullRequest.ts +++ b/plugins/scaffolder-backend-module-bitbucket-cloud/src/actions/bitbucketCloudPullRequest.ts @@ -226,7 +226,6 @@ const getDefaultBranch = async (opts: { } const { mainbranch } = await response.json(); - console.log(authorization); const defaultBranch = mainbranch.name; if (!defaultBranch) { throw new Error(`Could not fetch default branch for ${workspace}/${repo}`);