Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vilkinsons committed Jun 12, 2024
1 parent 33566aa commit edf68a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const generateFeeds = async (posts: Page<BlogPost>[]) => {
author: post.data.authors.map((author) => ({
name: author.name,
})),
dateFirstPublished: new Date(post.data.dateFirstPublished),
date: new Date(post.data.dateFirstPublished),
image: `${FRONTEND_URL}/${post.data.postPhoto}`,
});
}
Expand Down

0 comments on commit edf68a9

Please sign in to comment.