@promus/cli 0.24.26 → 0.24.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/ui/app.tsx +1 -1
package/package.json
CHANGED
package/src/ui/app.tsx
CHANGED
|
@@ -476,7 +476,7 @@ export function ChatApp(props: AppProps) {
|
|
|
476
476
|
})
|
|
477
477
|
return
|
|
478
478
|
}
|
|
479
|
-
if (evt.sequence && !evt.ctrl && !evt.meta && !evt.option
|
|
479
|
+
if (evt.sequence && !evt.ctrl && !evt.meta && !evt.option) {
|
|
480
480
|
const ch = evt.sequence
|
|
481
481
|
props.state.setInput(prev => {
|
|
482
482
|
const next = prev + ch
|