From c7306983b1c0affec87e95075c3164ea37cad486 Mon Sep 17 00:00:00 2001 From: Pradip Caulagi Date: Thu, 7 Sep 2023 16:34:19 +0200 Subject: [PATCH] Fix bug with page title for posts --- pages/posts/[slug].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/posts/[slug].tsx b/pages/posts/[slug].tsx index dae04ae..869459e 100644 --- a/pages/posts/[slug].tsx +++ b/pages/posts/[slug].tsx @@ -41,7 +41,7 @@ const Post: React.FC = ({ post, source }) => { <>
- {`post.title` + ' | Blog of ' + AUTHOR_NAME} + {post.title + ' | Blog of ' + AUTHOR_NAME}