From bf3eb40a57bc0e0f3f6e1615cad74f549a4412fa Mon Sep 17 00:00:00 2001 From: ndu Date: Sun, 25 Aug 2024 08:36:27 +0100 Subject: [PATCH] chore(fix): edit author name --- research/src/pages/[id].astro | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/research/src/pages/[id].astro b/research/src/pages/[id].astro index d67618e..d88a870 100644 --- a/research/src/pages/[id].astro +++ b/research/src/pages/[id].astro @@ -103,15 +103,15 @@ const formattedDate = formatDate(created_at)
-
+
Written by:{' '} - - - {article.data?.authors - .map((author) => author.username) - .join(', ')} - - + + {article.data?.authors.map((author) => ( + + {author.username} + + ))} +