diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-05-20 22:22:35 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-05-21 19:23:43 +0200 |
| commit | 802548124071039f83ebfa2605e839ded82b5689 (patch) | |
| tree | 62d85fe786b84fcdd099f20e21e1827add701ae8 /src/components/organisms/layout/posts-list.tsx | |
| parent | 7fd11d99f8a547e4acb89b9f9159b92e208dc90f (diff) | |
chore: update some styles
* Improve wp-blocks-columns, wp-block-quote and some images
* Make Sharing widget consistent between pages
* Remove margin option from lists
* Fix Topic logo alignement
Diffstat (limited to 'src/components/organisms/layout/posts-list.tsx')
| -rw-r--r-- | src/components/organisms/layout/posts-list.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/organisms/layout/posts-list.tsx b/src/components/organisms/layout/posts-list.tsx index 50192dd..608130e 100644 --- a/src/components/organisms/layout/posts-list.tsx +++ b/src/components/organisms/layout/posts-list.tsx @@ -100,6 +100,8 @@ const PostsList: FC<PostsListProps> = ({ const isMounted = useIsMounted(listRef); const { blog } = useSettings(); + const lastPostId = posts.length ? posts[posts.length - 1].id : 0; + /** * Retrieve the list of posts. * @@ -111,8 +113,6 @@ const PostsList: FC<PostsListProps> = ({ allPosts: Post[], headingLevel: HeadingLevel = 2 ): JSX.Element => { - const lastPostId = allPosts[allPosts.length - 1].id; - return ( <ol className={styles.list} ref={listRef}> {allPosts.map(({ id, ...post }) => ( |
