From 6c3ae984fc7d8390ead99abfe77569deb4fdf830 Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Tue, 17 Jan 2023 22:49:40 +0100 Subject: [PATCH] add tracking URL to LicenseRequired (#6526) --- .../features/ee/common/components/LicenseRequired.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 `, }) ),