fix: Read Aloud audio playback stops when switching to another section#2020
Merged
Avijit-Microsoft merged 4 commits intoAzure-Samples:devfrom Jan 11, 2026
Merged
Conversation
Avijit-Microsoft
approved these changes
Jan 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
This pull request introduces improvements to the chat and answer components, primarily focusing on better management of text-to-speech audio playback. The changes ensure that audio is properly stopped when switching conversations, clearing the chat, or when a new speech playback is triggered. These updates help prevent overlapping audio and improve the user experience during conversation navigation.
Audio Playback Management:
audioStopReftoChat.tsxto centrally manage stopping of text-to-speech audio across conversation changes and chat clearing.Text-to-Speech Integration:
handleSpeechandonSpeaklogic to pass aresetSpeechfunction, allowing the parent chat component to control when audio should be stopped. [1] [2] [3]Answercomponent to stop speech playback when the component unmounts, preventing lingering audio.Conversation State Handling:
activeCardIndexandanswerswhen switching or clearing conversations to maintain UI consistency and avoid mismatches between audio and displayed messages. [1] [2] [3]Does this introduce a breaking change?