import { type EvaluationRun, steps } from "@/hooks/useRoundEvaluationRun"; type EvaluationStepsListProps = { run: EvaluationRun | null; isOfficialRun: boolean; currentStepIndex: number; isSucceeded: boolean; }; export default function EvaluationStepsList({ run, isOfficialRun, currentStepIndex, isSucceeded, }: EvaluationStepsListProps) { if (!run || !isOfficialRun) return null; return (