From 817fafbe29b09940a881de1217fbaf7101f80d10 Mon Sep 17 00:00:00 2001 From: Isaac Sanchez-Hawkins <266845420+isanchez404@users.noreply.github.com> Date: Fri, 8 May 2026 09:01:33 -0400 Subject: [PATCH] fix(chat): guard skill autocomplete tab (#1155) Co-authored-by: Isaac Sanchez --- packages/ui/src/components/chat/ChatInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/components/chat/ChatInput.tsx b/packages/ui/src/components/chat/ChatInput.tsx index e295d9ea..408f7272 100644 --- a/packages/ui/src/components/chat/ChatInput.tsx +++ b/packages/ui/src/components/chat/ChatInput.tsx @@ -1776,7 +1776,7 @@ const ChatInputComponent: React.FC = ({ onOpenSettings, scrollTo return; } - if (e.key === 'Tab' && !showCommandAutocomplete && !showFileMention) { + if (e.key === 'Tab' && !showCommandAutocomplete && !showSkillAutocomplete && !showFileMention) { e.preventDefault(); handleCycleAgent(); return;