diff --git a/components/seo/head-seo.tsx b/components/seo/head-seo.tsx index 8dcbfcb3ac..d2e4c39639 100644 --- a/components/seo/head-seo.tsx +++ b/components/seo/head-seo.tsx @@ -88,7 +88,7 @@ export const HeadSeo: React.FC = (props) => nextSeoProps = {}, } = props; - const truncatedDescription = description.length > 32 ? description.substring(0, 31) + "..." : description; + const truncatedDescription = description.length > 24 ? description.substring(0, 23) + "..." : description; const pageTitle = title + " | Cal.com"; let seoObject = buildSeoMeta({ title: pageTitle,