diff --git a/app/(main)/speech-to-text/page.tsx b/app/(main)/speech-to-text/page.tsx
index 7b76edfa..c49e4a1b 100644
--- a/app/(main)/speech-to-text/page.tsx
+++ b/app/(main)/speech-to-text/page.tsx
@@ -22,6 +22,7 @@ import { APIKey } from "@/app/lib/types/credentials";
import WaveformVisualizer from "@/app/components/speech-to-text/WaveformVisualizer";
import { computeWordDiff } from "@/app/components/speech-to-text/TranscriptionDiffViewer";
import ErrorModal from "@/app/components/ErrorModal";
+import { getStatusColor } from "@/app/components/utils";
type Tab = "datasets" | "evaluations";
@@ -3169,14 +3170,13 @@ function EvaluationsTab({
{filteredRuns.map((run) => {
const isCompleted =
run.status.toLowerCase() === "completed";
+ const statusColor = getStatusColor(run.status);
return (
diff --git a/app/components/DetailedResultsTable.tsx b/app/components/DetailedResultsTable.tsx
index 38bc652e..c4b9de04 100644
--- a/app/components/DetailedResultsTable.tsx
+++ b/app/components/DetailedResultsTable.tsx
@@ -387,7 +387,7 @@ function GroupedResultsTable({ traces }: { traces: GroupedTraceItem[] }) {
{/* Table Container - overflow-x-auto enables horizontal scroll when table exceeds viewport */}
{/* Table Header - matching row format styling */}
diff --git a/app/components/prompt-editor/ConfigEditorPane.tsx b/app/components/prompt-editor/ConfigEditorPane.tsx
index 63502cc9..773b16c1 100644
--- a/app/components/prompt-editor/ConfigEditorPane.tsx
+++ b/app/components/prompt-editor/ConfigEditorPane.tsx
@@ -366,7 +366,6 @@ export default function ConfigEditorPane({
/>
- {/* Dropdown Menu */}
{isDropdownOpen && (
- {/* Model */}