Skip to content

Commit 00c1bd3

Browse files
committed
fix transcript editor persistence
1 parent 3a7d727 commit 00c1bd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/desktop/src/components/right-panel/views/transcript-view.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ const SpeakerSelector = ({
267267
}}
268268
>
269269
<span className="underline py-1 font-semibold">
270-
{human ? (human.full_name ?? "You") : `Speaker ${speakerIndex ?? 0}`}
270+
{human?.full_name ?? `Speaker ${speakerIndex ?? 0}`}
271271
</span>
272272
</PopoverTrigger>
273273
<PopoverContent align="start" side="bottom">

0 commit comments

Comments
 (0)