Skip to content

Commit

Permalink
feat: change dateModified format for json-ld in detail blogs page (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
rezafikkri authored Dec 21, 2024
2 parents f040be4 + 62fced0 commit 7803837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/blogs/[slug]/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default async function Page({ params }) {
'@type': 'Article',
headline: post.title,
image: [ post.ogImage ],
dateModified: dayjs(post.lastmod).toISOString(),
dateModified: dayjs(post.lastmod).format(),
author: [
{
'@type': 'Person',
Expand Down

0 comments on commit 7803837

Please sign in to comment.