From 69cd00094c5364888d8667ba5237ded24ebe1537 Mon Sep 17 00:00:00 2001 From: developomp Date: Sat, 31 Jul 2021 08:30:15 +0900 Subject: [PATCH] letter capitalization --- source/src/pages/PostList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/pages/PostList.tsx b/source/src/pages/PostList.tsx index f5f6e84..2441205 100644 --- a/source/src/pages/PostList.tsx +++ b/source/src/pages/PostList.tsx @@ -85,7 +85,7 @@ export default class PostList extends React.Component< const howMany = props.howMany | 0 const isLimited = howMany ? true : false - const h1Text = isLimited ? `recent posts` : "All posts" + const h1Text = isLimited ? `Recent Posts` : "All Posts" this.state = { howMany: howMany,