shorten bio for og-image (#1477)

This commit is contained in:
Peer Richelsen 2022-01-11 16:26:45 +00:00 committed by GitHub
parent 8b68263800
commit 59d4d92b52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,7 +88,7 @@ export const HeadSeo: React.FC<HeadSeoProps & { children?: never }> = (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,