diff --git a/src/features/review/AudioDetailPage.tsx b/src/features/review/AudioDetailPage.tsx index a7c1803..f3f45bd 100644 --- a/src/features/review/AudioDetailPage.tsx +++ b/src/features/review/AudioDetailPage.tsx @@ -6,7 +6,7 @@ import { Button } from "~/shared/components/ui/button"; import { Select } from "~/shared/components/ui/select"; import { api } from "~/shared/lib/api"; import { LANG_NAMES, langName } from "~/shared/lib/lang"; -import type { MediaItem, MediaStream, ReviewPlan, StreamDecision } from "~/shared/lib/types"; +import type { Job, MediaItem, MediaStream, ReviewPlan, StreamDecision } from "~/shared/lib/types"; // ─── Types ──────────────────────────────────────────────────────────────────── @@ -16,6 +16,7 @@ interface DetailData { plan: ReviewPlan | null; decisions: StreamDecision[]; command: string | null; + job: Job | null; } // ─── Utilities ──────────────────────────────────────────────────────────────── diff --git a/src/shared/lib/types.ts b/src/shared/lib/types.ts index a3ea5c4..9347ab7 100644 --- a/src/shared/lib/types.ts +++ b/src/shared/lib/types.ts @@ -155,10 +155,6 @@ export interface PipelineJobItem { file_path?: string; confidence?: "high" | "low"; is_noop?: number; - // 1 when an independent post-hoc check confirms the on-disk file matches - // the plan (ffprobe after a job, or is_noop=1 on the very first scan). - // Renders as the second checkmark in the Done column. - verified?: number; transcode_reasons?: string[]; audio_streams?: PipelineAudioStream[]; }