diff --git a/packages/features/ee/common/components/LicenseRequired.tsx b/packages/features/ee/common/components/LicenseRequired.tsx index ebeac9467d..c88d9f4db5 100644 --- a/packages/features/ee/common/components/LicenseRequired.tsx +++ b/packages/features/ee/common/components/LicenseRequired.tsx @@ -7,7 +7,7 @@ import DOMPurify from "dompurify"; import { useSession } from "next-auth/react"; import React, { AriaRole, ComponentType, Fragment } from "react"; -import { APP_NAME, CONSOLE_URL, SUPPORT_MAIL_ADDRESS } from "@calcom/lib/constants"; +import { APP_NAME, SUPPORT_MAIL_ADDRESS } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { EmptyScreen, Icon } from "@calcom/ui"; @@ -42,11 +42,11 @@ const LicenseRequired = ({ children, as = "", ...rest }: LicenseRequiredProps) = dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize( t("enterprise_license_description", { - consoleUrl: ` + consoleUrl: ` ${APP_NAME} `, - supportMail: ` - ${SUPPORT_MAIL_ADDRESS} + supportMail: ` + sales@cal.com `, }) ),