diff --git a/README.md b/README.md
index 3f1a441c..b5797614 100644
--- a/README.md
+++ b/README.md
@@ -73,6 +73,7 @@
## 页面样式主题
- 仿照 [fukasawa](https://andersnoren.se/themes/fukasawa)
+- 仿照 [youtube](https://youtube.com)
## License
diff --git a/components/BlogPostListScrollPagination.js b/components/BlogPostListScroll.js
similarity index 95%
rename from components/BlogPostListScrollPagination.js
rename to components/BlogPostListScroll.js
index 28369cfe..534e4fab 100644
--- a/components/BlogPostListScrollPagination.js
+++ b/components/BlogPostListScroll.js
@@ -14,7 +14,7 @@ import BlogPostListEmpty from '@/components/BlogPostListEmpty'
* @returns {JSX.Element}
* @constructor
*/
-const BlogPostListScrollPagination = ({ posts = [], tags, targetRef }) => {
+const BlogPostListScroll = ({ posts = [], tags }) => {
let filteredBlogPosts = posts
// 处理查询过滤 支持标签、关键词过滤
@@ -61,10 +61,12 @@ const BlogPostListScrollPagination = ({ posts = [], tags, targetRef }) => {
}
})
+ const targetRef = useRef(null)
+
if (!postsToShow || postsToShow.length === 0) {
return