chore: cleanup

This commit is contained in:
Daniel Hougaard
2025-01-27 23:11:14 +01:00
parent 10c10642a1
commit 94a1fc2809
3 changed files with 8 additions and 22 deletions

View File

@ -180,10 +180,6 @@ export const getAppsVercel = async ({ accessToken, teamId }: { teamId?: string |
}
});
for (const project of data.projects) {
console.log(project.customEnvironments);
}
data.projects.forEach((a) => {
apps.push({
name: a.name,

View File

@ -5,7 +5,6 @@ import { request } from "@app/lib/config/request";
import { BadRequestError, ForbiddenRequestError, InternalServerError, NotFoundError } from "@app/lib/errors";
import { Integrations, IntegrationUrls } from "./integration-list";
import { AxiosError } from "axios";
type ExchangeCodeAzureResponse = {
token_type: string;
@ -198,22 +197,15 @@ const exchangeCodeVercel = async ({ code }: { code: string }) => {
}
const res = (
await request
.post<ExchangeCodeVercelResponse>(
IntegrationUrls.VERCEL_TOKEN_URL,
new URLSearchParams({
code,
client_id: appCfg.CLIENT_ID_VERCEL,
client_secret: appCfg.CLIENT_SECRET_VERCEL,
redirect_uri: `${appCfg.SITE_URL}/integrations/vercel/oauth2/callback`
})
)
.catch((e) => {
if (e instanceof AxiosError) {
console.log(e.response?.data);
}
throw e;
await request.post<ExchangeCodeVercelResponse>(
IntegrationUrls.VERCEL_TOKEN_URL,
new URLSearchParams({
code,
client_id: appCfg.CLIENT_ID_VERCEL,
client_secret: appCfg.CLIENT_SECRET_VERCEL,
redirect_uri: `${appCfg.SITE_URL}/integrations/vercel/oauth2/callback`
})
)
).data;
return {

View File

@ -164,8 +164,6 @@ export const VercelConfigurePage = () => {
return selectedEnvironments;
}, [targetAppId, customEnvironments]);
console.log("selectedVercelEnvironments", selectedVercelEnvironments);
return integrationAuth &&
selectedSourceEnvironment &&
integrationAuthApps &&