From ef6f57e710a6590599e7088a9a6437b3259a4722 Mon Sep 17 00:00:00 2001 From: Ayush8923 <80516839+Ayush8923@users.noreply.github.com> Date: Mon, 6 Apr 2026 12:16:11 +0530 Subject: [PATCH] fix(*): update the typography and UI updates --- app/(main)/speech-to-text/page.tsx | 8 ++++---- app/components/DetailedResultsTable.tsx | 2 +- app/components/prompt-editor/ConfigEditorPane.tsx | 2 -- app/globals.css | 6 +++--- app/layout.tsx | 14 ++++++++------ app/lib/models.ts | 3 --- 6 files changed, 16 insertions(+), 19 deletions(-) diff --git a/app/(main)/speech-to-text/page.tsx b/app/(main)/speech-to-text/page.tsx index 7b76edf..c49e4a1 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 38bc652..c4b9de0 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 63502cc..773b16c 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 */}