diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index be9037d..2093369 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -35,7 +35,7 @@ const related = all }) .filter((r) => r.score > 0) .sort((a, b) => b.score - a.score) - .slice(0, 3) + .slice(0, 4) .map((r) => r.post); // Translation link for the language switch: @@ -87,7 +87,7 @@ const switchHref = translation ? `/posts/${translation}/` : undefined; {related.length > 0 && (