diff --git a/drb-frontend/components/CallRow.tsx b/drb-frontend/components/CallRow.tsx
index bc3133c..b282e5e 100644
--- a/drb-frontend/components/CallRow.tsx
+++ b/drb-frontend/components/CallRow.tsx
@@ -155,19 +155,27 @@ export function CallRow({ call, systemName, isAdmin }: Props) {
) : hasSegments ? (
- {call.segments!.length} transmissions
+
+ {hasBoth && !showOriginal ? "corrected" : `${call.segments!.length} transmissions`}
+
{isAdmin && (
)}
-
- {call.segments!.map((seg, i) => (
-
- {i + 1}. [{seg.start}s]
- {seg.text}
-
- ))}
-
+ {hasBoth && !showOriginal ? (
+
+ {call.transcript_corrected}
+
+ ) : (
+
+ {call.segments!.map((seg, i) => (
+
+ {i + 1}. [{seg.start}s]
+ {seg.text}
+
+ ))}
+
+ )}
{hasBoth && (