ciyidogan commited on
Commit
f2ffc4c
·
verified ·
1 Parent(s): f353920

Update flare-ui/src/app/services/conversation-manager.service.ts

Browse files
flare-ui/src/app/services/conversation-manager.service.ts CHANGED
@@ -330,11 +330,11 @@ export class ConversationManagerService implements OnDestroy {
330
  // Clear transcription when starting to listen
331
  this.transcriptionSubject.next('');
332
  } else if (to === 'playing_audio') {
333
- // Start playing accumulated audio
334
- this.playQueuedAudio();
335
- } else if (to === 'error') {
336
- // Handle error state
337
- this.addSystemMessage('An error occurred in the conversation flow');
338
  }
339
  }
340
 
 
330
  // Clear transcription when starting to listen
331
  this.transcriptionSubject.next('');
332
  } else if (to === 'playing_audio') {
333
+ // TTS playing - visualization should be OFF
334
+ console.log('🔊 Playing audio - visualization should be inactive');
335
+ } else if (to === 'idle') {
336
+ // Clear any remaining transcription
337
+ this.transcriptionSubject.next('');
338
  }
339
  }
340