Add debug logging for input keys in InputPrompt

This commit is contained in:
Your Name
2026-04-17 19:21:40 +00:00
parent bb8565ee9d
commit 0e3d2fb880
@@ -649,6 +649,9 @@ export const InputPrompt: React.FC<InputPromptProps> = ({
const handleInput = useCallback(
(key: Key) => {
debugLogger.log(
`[UI INPUT] handleInput received key: ${JSON.stringify(key)}`,
);
// Determine if this keypress is a history navigation command
const isHistoryUp =
!shellModeActive &&