fix: transcription storage issue

This commit is contained in:
Owen Gretzinger
2025-07-10 21:29:09 -04:00
parent fd6f842aa3
commit 99eba5a138
@@ -43,6 +43,10 @@ class MeetingViewModel: ObservableObject {
self.meeting = meeting
}
// NEW: Seed the audio manager with any existing transcript chunks so the initial
// published value doesn't overwrite the saved transcript with an empty array.
audioManager.transcriptChunks = self.meeting.transcriptChunks
// Update meeting transcript chunks when audio manager transcript chunks change
audioManager.$transcriptChunks
.sink { [weak self] newChunks in