diff --git a/app/api/search-parallel/route.ts b/app/api/search-parallel/route.ts
index e312b6a..2ea3e44 100644
--- a/app/api/search-parallel/route.ts
+++ b/app/api/search-parallel/route.ts
@@ -73,7 +73,6 @@ export async function POST(request: NextRequest) {
type: 'videos',
videos: videos.map((video: any) => ({
...video,
- isVerifying: true, // Mark for verification
sourceDisplayName: getSourceDisplayName(source.id),
})),
source: source.id,
diff --git a/components/search/VideoGrid.tsx b/components/search/VideoGrid.tsx
index eed0bbe..b97ac72 100644
--- a/components/search/VideoGrid.tsx
+++ b/components/search/VideoGrid.tsx
@@ -15,7 +15,6 @@ interface Video {
source: string;
sourceName?: string;
isNew?: boolean;
- isVerifying?: boolean;
}
interface VideoGridProps {
@@ -70,15 +69,6 @@ export function VideoGrid({ videos, className = '' }: VideoGridProps) {
)}
- {/* Verifying Badge - Top Right */}
- {video.isVerifying && (
-
-
- 验证中
-
-
- )}
-
{/* Overlay */}
diff --git a/lib/hooks/useParallelSearch.ts b/lib/hooks/useParallelSearch.ts
index b859e48..f1079d9 100644
--- a/lib/hooks/useParallelSearch.ts
+++ b/lib/hooks/useParallelSearch.ts
@@ -2,7 +2,6 @@
import { useState, useRef, useCallback } from 'react';
import { getSourceName, SOURCE_IDS } from '@/lib/utils/source-names';
-import { checkVideoAvailability } from '@/lib/utils/source-checker';
import { calculateRelevanceScore } from '@/lib/utils/search';
interface Video {
@@ -15,7 +14,6 @@ interface Video {
source: string;
sourceName?: string;
isNew?: boolean;
- isVerifying?: boolean;
vod_play_url?: string;
vod_actor?: string;
vod_director?: string;
@@ -47,106 +45,6 @@ export function useParallelSearch(
const currentQueryRef = useRef
('');
const abortControllerRef = useRef(null);
- const verificationQueueRef = useRef