mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 04:30:48 +00:00
fix input filter
This commit is contained in:
parent
7ccba75621
commit
6da6bc0dfd
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ export function OpenAIKeyPrompt({
|
|||
}
|
||||
|
||||
// Handle regular character input
|
||||
if (key.sequence && !key.ctrl && !key.meta && !key.name) {
|
||||
if (key.sequence && !key.ctrl && !key.meta) {
|
||||
// Filter control characters
|
||||
const cleanInput = key.sequence
|
||||
.split('')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue