diff --git a/src/renderer/src/components/entry-column/index.tsx b/src/renderer/src/components/entry-column/index.tsx
index ad4f6bee53..232ff5baf9 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) => (
+
+))