diff --git a/portal-ui/src/config.ts b/portal-ui/src/config.ts index 551de4d24..8baa9f489 100644 --- a/portal-ui/src/config.ts +++ b/portal-ui/src/config.ts @@ -25,11 +25,11 @@ type LogoVar = "simple" | "AGPL" | "standard" | "enterprise"; export const getLogoVar = (): LogoVar => { let logoVar: LogoVar = "AGPL"; - switch (MinIOPlan) { + switch (MinIOPlan.toLowerCase()) { case "enterprise": logoVar = "enterprise"; break; - case "STANDARD": + case "standard": logoVar = "standard"; break; default: