remove console.log() i.e used for testing

This commit is contained in:
Aashish-Upadhyay-101
2023-02-28 10:19:31 +05:45
parent 74d17a20a4
commit 40ddd3b2a5

View File

@@ -417,7 +417,6 @@ const getAppsTravisCI = async ({ accessToken }: { accessToken: string }) => {
*/
const getAppsGitlab = async ({ accessToken }: {accessToken: string}) => {
let apps;
console.log(accessToken);
try {
const { id } = (
@@ -456,7 +455,6 @@ const getAppsGitlab = async ({ accessToken }: {accessToken: string}) => {
throw new Error("Failed to get GitLab repos");
}
console.log(apps);
return apps;
}