From 72ccf4e48da2196275bc6aeb53b731ecf1d94c30 Mon Sep 17 00:00:00 2001 From: Pete Littlewood <30798627+plittlewood-rpt@users.noreply.github.com> Date: Tue, 4 Feb 2025 10:27:25 +0000 Subject: [PATCH] feat: disable pipelines (#11513) * chore: disable pipelines during iaas deployment * chore: linting --- .../src/components/apps/page/index.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/developer-portal/src/components/apps/page/index.tsx b/packages/developer-portal/src/components/apps/page/index.tsx index 83a0f08c71..f57de42be5 100644 --- a/packages/developer-portal/src/components/apps/page/index.tsx +++ b/packages/developer-portal/src/components/apps/page/index.tsx @@ -50,10 +50,12 @@ export const AppsPage: FC = () => { isAppConsents, } = getCurrentPage(pathname) - const hasPipelines = - currentDeveloper?.id && - process.env.pipelineWhitelist.includes(currentDeveloper.id) && - appDetail?.authFlow !== 'clientCredentials' + // const hasPipelines = + // currentDeveloper?.id && + // process.env.pipelineWhitelist.includes(currentDeveloper.id) && + // appDetail?.authFlow !== 'clientCredentials' + + const hasPipelines = false const shouldRenderConsents = checkShouldRenderConsents(appDetail, appLatestRevision, appHasInstallations)