From 03426ee7f2d8ed381f882d71e31ddee705738067 Mon Sep 17 00:00:00 2001 From: Tuan Dang Date: Sat, 11 Feb 2023 01:49:53 +0700 Subject: [PATCH] Fix lint errors --- frontend/src/components/integrations/IntegrationSection.tsx | 2 ++ frontend/src/pages/integrations/flyio/authorize.tsx | 1 + frontend/src/pages/integrations/render/authorize.tsx | 1 + 3 files changed, 4 insertions(+) diff --git a/frontend/src/components/integrations/IntegrationSection.tsx b/frontend/src/components/integrations/IntegrationSection.tsx index 6fe2413d05..d2e15c4c2b 100644 --- a/frontend/src/components/integrations/IntegrationSection.tsx +++ b/frontend/src/components/integrations/IntegrationSection.tsx @@ -14,6 +14,8 @@ interface Integration { isActive: boolean; app: string | null; appId: string | null; + path: string | null; + region: string | null; createdAt: string; updatedAt: string; environment: string; diff --git a/frontend/src/pages/integrations/flyio/authorize.tsx b/frontend/src/pages/integrations/flyio/authorize.tsx index 2822bd49cc..37bbbc8ad0 100644 --- a/frontend/src/pages/integrations/flyio/authorize.tsx +++ b/frontend/src/pages/integrations/flyio/authorize.tsx @@ -30,6 +30,7 @@ export default function FlyioCreateIntegrationPage() { const integrationAuth = await saveIntegrationAccessToken({ workspaceId: localStorage.getItem('projectData.id'), integration: 'flyio', + accessId: null, accessToken }); diff --git a/frontend/src/pages/integrations/render/authorize.tsx b/frontend/src/pages/integrations/render/authorize.tsx index bd7a877c39..c01dfe9562 100644 --- a/frontend/src/pages/integrations/render/authorize.tsx +++ b/frontend/src/pages/integrations/render/authorize.tsx @@ -30,6 +30,7 @@ export default function RenderCreateIntegrationPage() { const integrationAuth = await saveIntegrationAccessToken({ workspaceId: localStorage.getItem('projectData.id'), integration: 'render', + accessId: null, accessToken: apiKey });