diff --git a/portal-ui/src/screens/Console/Menu/LicenseBadge.tsx b/portal-ui/src/screens/Console/Menu/LicenseBadge.tsx index dc623ab5e..03fcf3ac9 100644 --- a/portal-ui/src/screens/Console/Menu/LicenseBadge.tsx +++ b/portal-ui/src/screens/Console/Menu/LicenseBadge.tsx @@ -20,6 +20,7 @@ import { AppState } from "../../../store"; import { Box } from "@mui/material"; import { CircleIcon } from "mds"; import { getLicenseConsent } from "../License/utils"; +import { registeredCluster } from "../../../config"; const LicenseBadge = () => { const licenseInfo = useSelector( @@ -27,10 +28,11 @@ const LicenseBadge = () => { ); const isAgplAckDone = getLicenseConsent(); + const clusterRegistered = registeredCluster(); const { plan = "" } = licenseInfo || {}; - if (plan || isAgplAckDone) { + if (plan || isAgplAckDone || clusterRegistered) { return null; }