diff --git a/packages/ee/server/checkLicense.ts b/packages/ee/server/checkLicense.ts index 9d314c9a19..e8d0fb6b02 100644 --- a/packages/ee/server/checkLicense.ts +++ b/packages/ee/server/checkLicense.ts @@ -5,7 +5,6 @@ import { CONSOLE_URL } from "@calcom/lib/constants"; const CACHING_TIME = 86400000; // 24 hours in milliseconds async function checkLicense(license: string): Promise { - return true; if (!!process.env.NEXT_PUBLIC_IS_E2E) return true; const url = `${CONSOLE_URL}/api/license?key=${license}`; const cachedResponse = cache.get(url);