remove blogTagsPaginated

This commit is contained in:
Liviu Ionescu 2024-02-09 14:19:58 +02:00
parent a6e51983bd
commit 2e54082068

View File

@ -122,11 +122,10 @@ export default async function pluginContentBlog(
blogListPaginated: [],
blogTags: {},
blogTagsListPath,
blogTagsPaginated: [],
};
}
// Colocate next and prev metadata.
// Collocate next and prev metadata.
listedBlogPosts.forEach((blogPost, index) => {
const prevItem = index > 0 ? listedBlogPosts[index - 1] : null;
if (prevItem) {