fix(tui): pass configured voice shortcut through TextInput layer

Thread the live parsed voiceRecordKey into TextInput so configured voice.record_key chords bubble to useInputHandlers instead of being consumed as editor input. This removes the last hardcoded Ctrl+B pass-through in the composer path while preserving existing global control chord behavior.
This commit is contained in:
Brooklyn Nicholson
2026-05-04 14:49:35 -05:00
parent bae5a1bbe0
commit ad579015b2
5 changed files with 75 additions and 16 deletions
+1
View File
@@ -321,6 +321,7 @@ export interface AppLayoutComposerProps {
queuedDisplay: string[]
submit: (value: string) => void
updateInput: StateSetter<string>
voiceRecordKey: ParsedVoiceRecordKey
}
export interface AppLayoutProgressProps {