From 90da5432c4a3a3d6f3500bd63f8dbb68fef2f841 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Mon, 3 Jun 2024 12:33:47 +0800 Subject: [PATCH] feat: update text --- .../src/components/entry-column/index.tsx | 27 +++++++++---------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/src/renderer/src/components/entry-column/index.tsx b/src/renderer/src/components/entry-column/index.tsx index ad4f6bee5..232ff5baf 100644 --- a/src/renderer/src/components/entry-column/index.tsx +++ b/src/renderer/src/components/entry-column/index.tsx @@ -192,6 +192,8 @@ const ListHeader: FC = () => {
{entries.data?.pages?.[0].total} {" "} + {unreadOnly ? "Unread" : ""} + {" "} Items
@@ -239,18 +241,13 @@ const ListHeader: FC = () => { ) } -const ListContent = forwardRef((props, ref) => { - const activeList = useFeedStore(useShallow((state) => state.activeList)) - - return ( - - ) -}) +const ListContent = forwardRef((props, ref) => ( + +))