From d13f57a7e218bec96ab94ee8d86801a0cebce2ae Mon Sep 17 00:00:00 2001 From: Traxus Date: Sat, 22 Apr 2023 02:18:11 -0400 Subject: [PATCH] Signed-off-by: Traxus --- src/pages/blog/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(), ])