diff --git a/src/renderer/src/modules/entry-column/list-item-template.tsx b/src/renderer/src/modules/entry-column/list-item-template.tsx
index c9f5fc683..0692ad239 100644
--- a/src/renderer/src/modules/entry-column/list-item-template.tsx
+++ b/src/renderer/src/modules/entry-column/list-item-template.tsx
@@ -9,7 +9,6 @@ import { cn } from "@renderer/lib/utils"
import { EntryTranslation } from "@renderer/modules/entry-column/translation"
import { useEntry } from "@renderer/store/entry/hooks"
import { useFeedById } from "@renderer/store/feed"
-import { useState } from "react"
import { ReactVirtuosoItemPlaceholder } from "../../components/ui/placeholder"
import { StarIcon } from "./star-icon"
@@ -35,8 +34,6 @@ export function ListItem({
const feed = useFeedById(entry?.feedId) || entryPreview?.feeds
- const [isHovered, setIsHovered] = useState(false)
-
// NOTE: prevent 0 height element, react virtuoso will not stop render any more
if (!entry || !feed) return