diff --git a/apps/web/src/app/[locale]/control-panel/license/page.tsx b/apps/web/src/app/[locale]/control-panel/license/page.tsx
index 3a018786f..c32480216 100644
--- a/apps/web/src/app/[locale]/control-panel/license/page.tsx
+++ b/apps/web/src/app/[locale]/control-panel/license/page.tsx
@@ -77,15 +77,17 @@ export default async function LicensePage() {
{license.type}
-
- (
-
- )
-
+ {license.seats ? (
+
+ (
+
+ )
+
+ ) : null}
diff --git a/apps/web/src/features/licensing/components/license-limit-warning.tsx b/apps/web/src/features/licensing/components/license-limit-warning.tsx
index 9898bd906..0f312b644 100644
--- a/apps/web/src/features/licensing/components/license-limit-warning.tsx
+++ b/apps/web/src/features/licensing/components/license-limit-warning.tsx
@@ -16,7 +16,7 @@ export async function LicenseLimitWarning() {
const userLimit = license?.seats ?? 1;
- if (!userLimit || userCount <= userLimit) {
+ if (license?.type === "ENTERPRISE" || userCount <= userLimit) {
return null;
}