From 258666e382b5fc5bb1d41753b2756d2cd1808be9 Mon Sep 17 00:00:00 2001 From: icarus Date: Mon, 13 Oct 2025 13:23:06 +0800 Subject: [PATCH] refactor(video): remove unused useVideos hook import --- src/renderer/src/pages/video/VideoList.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/renderer/src/pages/video/VideoList.tsx b/src/renderer/src/pages/video/VideoList.tsx index 83b91d0442..8ff7d288f6 100644 --- a/src/renderer/src/pages/video/VideoList.tsx +++ b/src/renderer/src/pages/video/VideoList.tsx @@ -1,5 +1,4 @@ import { cn, Progress, Spinner } from '@heroui/react' -import { useVideos } from '@renderer/hooks/video/useVideos' import { Video } from '@renderer/types' import { CheckCircleIcon, CircleXIcon, ClockIcon, DownloadIcon, PlusIcon } from 'lucide-react' import { useTranslation } from 'react-i18next' @@ -11,7 +10,6 @@ export type VideoListProps = { } export const VideoList = ({ videos, activeVideoId, setActiveVideoId }: VideoListProps) => { - return (