From 57ba17a12ea06f85e1da5f254e7677d767f46ac3 Mon Sep 17 00:00:00 2001 From: Alex <33497058+bexsoft@users.noreply.github.com> Date: Thu, 13 Jun 2024 14:36:08 -0600 Subject: [PATCH] Changed License plans validation to not allow AGPL as a registered plan (#3385) 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"); };