diff --git a/packages/lib/constants.ts b/packages/lib/constants.ts index 13481faef4..8000a43d7a 100644 --- a/packages/lib/constants.ts +++ b/packages/lib/constants.ts @@ -20,7 +20,7 @@ export const CONSOLE_URL = ? `https://console.cal.dev` : `https://console.cal.com`; export const IS_SELF_HOSTED = !( - new URL(WEBAPP_URL).hostname.endsWith(".cal.dev") || !!new URL(WEBAPP_URL).hostname.endsWith(".cal.com") + new URL(WEBAPP_URL).hostname.endsWith(".cal.dev") || new URL(WEBAPP_URL).hostname.endsWith(".cal.com") ); export const EMBED_LIB_URL = process.env.NEXT_PUBLIC_EMBED_LIB_URL || `${WEBAPP_URL}/embed/embed.js`; export const IS_PRODUCTION = process.env.NODE_ENV === "production";