Remove post limit on blog's index page

This commit is contained in:
Maciej Pędzich 2024-07-20 18:06:55 +02:00
parent e553a66631
commit 1ac6bc6abc
Signed by: maciejpedzich
GPG Key ID: CE4A303D84882F0D

View File

@ -7,5 +7,5 @@ import PostList from '../../components/PostList.astro';
title="blog"
description="blog about the making of maciej's projects and more"
>
<PostList limit={10} />
<PostList />
</BlogSubpage>