Skip to content
This repository was archived by the owner on Jun 17, 2026. It is now read-only.

Commit b934b9f

Browse files
committed
reword Mic Off -> Mic is off button
1 parent 0aeb867 commit b934b9f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/pipecat_cli/templates/client/vanilla-js-vite/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</div>
2121
<div class="controls">
2222
<button id="mic-btn" class="control-btn" disabled>
23-
🎤 <span id="mic-status">Mic Off</span>
23+
🎤 <span id="mic-status">Mic is Off</span>
2424
</button>
2525
<button id="connect-btn" class="connect-btn">Connect</button>
2626
</div>

src/pipecat_cli/templates/client/vanilla-js-vite/src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class VoiceChatClient {
180180
}
181181

182182
updateMicButton(enabled) {
183-
this.micStatus.textContent = enabled ? 'Mic On' : 'Mic Off';
183+
this.micStatus.textContent = enabled ? 'Mic is On' : 'Mic is Off';
184184
this.micBtn.style.backgroundColor = enabled ? '#10b981' : '#1f2937';
185185
}
186186

0 commit comments

Comments
 (0)