Skip to content

Commit 6c62f73

Browse files
committed
rm comments
1 parent ab43727 commit 6c62f73

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/vs/workbench/contrib/chat/browser/chatWidget.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,6 @@ export class ChatAccessibilityService extends Disposable implements IChatAccessi
533533
}
534534
async acceptRequest(): Promise<void> {
535535
this._audioCueService.playAudioCue(AudioCue.chatRequestSent, true);
536-
// Only play the pending cue if the response is not accepted within the timeout
537536
setTimeout(() => {
538537
if (!this._hasReceivedRequest) {
539538
this._responsePendingAudioCue = this._audioCueService.playAudioCueLoop(AudioCue.chatResponsePending, CHAT_RESPONSE_PENDING_AUDIO_CUE_LOOP_MS);
@@ -542,7 +541,6 @@ export class ChatAccessibilityService extends Disposable implements IChatAccessi
542541
}
543542
acceptResponse(response?: IChatResponseViewModel): void {
544543
this._hasReceivedRequest = true;
545-
// The response pending cue has started looping, time to cancel it
546544
this._responsePendingAudioCue?.dispose();
547545
this._audioCueService.playRandomAudioCue(AudioCueGroupId.chatResponseReceived, true);
548546
if (!response) {

0 commit comments

Comments
 (0)