Skip to content

Commit

Permalink
Fix bug with page title for posts (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
caulagi authored Sep 7, 2023
1 parent 2b57480 commit b5dc890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/posts/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Post: React.FC<PostProps> = ({ post, source }) => {
<>
<article className="prose lg:prose-xl">
<Head>
<title>{`post.title` + ' | Blog of ' + AUTHOR_NAME}</title>
<title>{post.title + ' | Blog of ' + AUTHOR_NAME}</title>
<meta
property="og:image"
content={post.ogImage.url}
Expand Down

1 comment on commit b5dc890

@vercel
Copy link

@vercel vercel bot commented on b5dc890 Sep 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blog – ./

blog-caulagi.vercel.app
blog.caulagi.com
blog-git-main-caulagi.vercel.app

Please sign in to comment.