mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
Minor improvements
This commit is contained in:
@@ -35,7 +35,7 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
||||
);
|
||||
}
|
||||
|
||||
const fullTranscript = topics.topics?.map(topic => topic.transcript).join(' ').replace(/ +/g, ' ').trim() || '';
|
||||
const fullTranscript = topics.topics?.map(topic => topic.transcript).join('\n\n').replace(/ +/g, ' ').trim() || '';
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -36,7 +36,7 @@ export default function FinalSummary(props: FinalSummaryProps) {
|
||||
<div className="overflow-y-auto h-auto max-h-full">
|
||||
<div className="flex flex-row justify-between items-center">
|
||||
<h2 className="text-xl md:text-2xl font-bold">Final Summary</h2>
|
||||
<div class="ml-auto flex space-x-2">
|
||||
<div className="ml-auto flex space-x-2">
|
||||
<button
|
||||
onClick={handleCopyTranscriptClick}
|
||||
className={
|
||||
|
||||
Reference in New Issue
Block a user