jbot: remove hint text from bottom footer — keep only the voice button

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-05-17 14:13:37 +10:00
co-authored by Copilot
parent 85da425c38
commit 7cd36ad81b
2 changed files with 3 additions and 8 deletions
+3 -3
View File
File diff suppressed because one or more lines are too long
-5
View File
@@ -312,7 +312,6 @@ export default function App() {
}, [handleSpaceDown, handleSpaceUp, pick]);
// ── Render ─────────────────────────────────────────────────
const currentVoiceLabel = getVoiceLabel(getEffectiveVoice());
return (
<div className="app">
@@ -381,10 +380,6 @@ export default function App() {
<MemoryPanel memories={memories} onMemoriesChange={refreshMemories} />
<ChatPanel messages={chatMessages} voiceStatus={voiceStatus} />
<div className="right-footer">
<p className="right-hint">
按住 <kbd>Space</kbd> 或按钮说话 · 松开发送 · 🔊{' '}
<button className="hist-inline-link" onClick={() => navigate('/settings')}>{currentVoiceLabel}</button>
</p>
<VoiceButton phase={voicePhase} onStart={handleSpaceDown} onEnd={handleSpaceUp} />
</div>
</div>