(e: KeyboardEvent<HTMLTextAreaElement>)
| 40 | }; |
| 41 | |
| 42 | const handleKeyDown = (e: KeyboardEvent<HTMLTextAreaElement>) => { |
| 43 | if (e.key === 'Enter' && !e.shiftKey) { |
| 44 | e.preventDefault(); |
| 45 | handleSubmit(e); |
| 46 | } |
| 47 | }; |
| 48 | |
| 49 | const handleQuickAction = (action: typeof quickActions[0]) => { |
| 50 | if (currentPipeline) { |
nothing calls this directly
no test coverage detected