diff --git a/src/pages/blog/index.tsx b/src/pages/blog/index.tsx index c0683df..9f1773d 100644 --- a/src/pages/blog/index.tsx +++ b/src/pages/blog/index.tsx @@ -158,7 +158,7 @@ const BlogIndexPage = ({ > All - {categories.map((category) => { + {categories.map((category: any) => { return ( { ]) */ - const [allBlogPosts, categories : any[]] = await Promise.all([ + const [allBlogPosts, categories] = await Promise.all([ getAllBlogPostsFromSource({ page: 1 }), getAllBlogPostsCategoriesFromSource(), ])