mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-05-05 09:44:07 +00:00
Signed-off-by: Traxus <shyidx@gmail.com>
This commit is contained in:
parent
6e4d0eff6f
commit
c0f0742426
@ -63,7 +63,7 @@ const BlogIndexPage = ({
|
||||
<Hero featuredPost={heroBlogPost} />
|
||||
<PostsGrid>
|
||||
<Fragment>
|
||||
{initialBlogPosts.data.map((post, postIdx) => (
|
||||
{initialBlogPosts.data.map((post : any, postIdx) => (
|
||||
<BlogCard data={post} key={postIdx} />
|
||||
))}
|
||||
</Fragment>
|
||||
@ -163,7 +163,7 @@ const BlogIndexPage = ({
|
||||
hasResults ? (
|
||||
queriedPosts?.pages?.map((page, pageIdx) => (
|
||||
<Fragment key={pageIdx}>
|
||||
{page.data.map((post, postIdx) => (
|
||||
{page.data.map((post : any, postIdx) => (
|
||||
<BlogCard data={post} key={postIdx} />
|
||||
))}
|
||||
</Fragment>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user