From cc29d23bc252868995d31ad5d3f4b89320800a22 Mon Sep 17 00:00:00 2001 From: Richard Osborne Date: Tue, 26 Sep 2023 22:47:23 +0100 Subject: [PATCH] Fix NextPrev links --- src/components/NextPrev.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/NextPrev.astro b/src/components/NextPrev.astro index e8077ea..3d58536 100644 --- a/src/components/NextPrev.astro +++ b/src/components/NextPrev.astro @@ -11,7 +11,7 @@ const { prev, next } = Astro.props;
{ prev && ( - + < Prev ) @@ -21,7 +21,7 @@ const { prev, next } = Astro.props;
{ next && ( - + Next > )