fix/ build

This commit is contained in:
tangly1024.com
2023-06-07 15:47:31 +08:00
parent d98d1f4c4b
commit 93fd5b8fe3
17 changed files with 17 additions and 17 deletions

View File

@@ -22,7 +22,7 @@ const BlogPostListPage = ({ page = 1, posts = [], postCount }) => {
<div className='w-full justify-center'>
<div id='container'>
{/* 文章列表 */}
{posts.map(post => (
{posts?.map(post => (
<BlogPostCard key={post.id} post={post} />
))}
</div>