From 59d4d92b52041499f11202a9abb7b3cd21ba56bc Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Tue, 11 Jan 2022 16:26:45 +0000 Subject: [PATCH] shorten bio for og-image (#1477) --- components/seo/head-seo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,