From c601b51c86cb9636a5ff64275f83c1f596ee41d7 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sun, 28 Sep 2025 02:26:09 +0900 Subject: [PATCH 1/2] #134 --- frontend/src/components/PostList.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/PostList.tsx b/frontend/src/components/PostList.tsx index 31cce00..9ba7f35 100644 --- a/frontend/src/components/PostList.tsx +++ b/frontend/src/components/PostList.tsx @@ -12,15 +12,14 @@ export default (({ posts, onClick }: Props) => (
{posts.map ((post, i) => ( {post.title + className="object-cover w-full h-full" /> ))}
)) satisfies FC -- 2.34.1 From b220dc5f45d778968410a754f8c533394f63dfa6 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sun, 28 Sep 2025 02:29:50 +0900 Subject: [PATCH 2/2] =?UTF-8?q?#134=20=E7=B4=B0=E9=83=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/PostList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/PostList.tsx b/frontend/src/components/PostList.tsx index 9ba7f35..67a3a28 100644 --- a/frontend/src/components/PostList.tsx +++ b/frontend/src/components/PostList.tsx @@ -20,6 +20,6 @@ export default (({ posts, onClick }: Props) => ( title={post.title || post.url || undefined} loading={i < 12 ? 'eager' : 'lazy'} decoding="async" - className="object-cover w-full h-full" /> + className="object-cover w-full h-full"/> ))} )) satisfies FC -- 2.34.1