diff --git a/packages/ui/components/head-seo/HeadSeo.tsx b/packages/ui/components/head-seo/HeadSeo.tsx index 4d6a5e91bd..1cdb89da87 100644 --- a/packages/ui/components/head-seo/HeadSeo.tsx +++ b/packages/ui/components/head-seo/HeadSeo.tsx @@ -75,7 +75,8 @@ export const HeadSeo = (props: HeadSeoProps): JSX.Element => { // Get the current URL from the window object const url = getBrowserInfo()?.url; // Check if the URL is from cal.com - const isCalcom = url && new URL(url).hostname.endsWith("cal.com"); + const isCalcom = + url && (new URL(url).hostname.endsWith("cal.com") || new URL(url).hostname.endsWith("cal.dev")); // Get the router's path const path = useRouter().asPath; // Build the canonical URL using the router's path, without query parameters. Note: on homepage it omits the trailing slash