diff --git a/web-app/src/config.ts b/web-app/src/config.ts index 2248ec3bd..2807e67e4 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"); };