diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index 1134c28..d2bfdf0 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -22,7 +22,7 @@ const components = { table: Table }; const { title, description } = entry.data; const descriptionMeta = - description.length > 160 ? description.substring(0, 150) + '...' : description; + description.length > 158 ? description.substring(0, 155) + '...' : description; ---