fix: suppress startup dialogs when input is buffered (#423)

Co-authored-by: OpenClaude Worker 3 <worker-3@openclaude.local>
This commit is contained in:
Vasanth T
2026-04-06 16:01:38 +05:30
committed by GitHub
parent 6c61790063
commit 8ece290087
3 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
export function isPromptTypingSuppressionActive(
isPromptInputActive: boolean,
inputValue: string,
): boolean {
return isPromptInputActive || inputValue.trim().length > 0
}