From 2c101fd8b61f39a3a31ccf67fdd45cb6db0d6913 Mon Sep 17 00:00:00 2001 From: Benjamin Perez Date: Thu, 13 Jun 2024 14:22:49 -0600 Subject: [PATCH] Changed License plans validation to not allow AGPL as a registered plan Signed-off-by: Benjamin Perez --- web-app/src/config.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/web-app/src/config.ts b/web-app/src/config.ts index 2248ec3bde..2807e67e4b 100644 --- a/web-app/src/config.ts +++ b/web-app/src/config.ts @@ -68,13 +68,5 @@ export const getLogoApplicationVariant = export const registeredCluster = (): boolean => { const plan = getLogoVar(); - return [ - "AGPL", - "simple", - "standard", - "enterprise", - "new", - "enterpriseos", - "enterpriseosvertical", - ].includes(plan || "AGPL"); + return ["standard", "enterprise", "enterpriseos"].includes(plan || "AGPL"); };