From d08a5d2dccdc2dd6fbfd81d9db24d8245d29b695 Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Tue, 24 Feb 2026 14:11:16 +0300 Subject: [PATCH] fix(chat): remove unnecessary conditional styles from CommandMenu --- src/components/chat/view/subcomponents/CommandMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/chat/view/subcomponents/CommandMenu.tsx b/src/components/chat/view/subcomponents/CommandMenu.tsx index 978ed47..92a598e 100644 --- a/src/components/chat/view/subcomponents/CommandMenu.tsx +++ b/src/components/chat/view/subcomponents/CommandMenu.tsx @@ -170,7 +170,7 @@ export default function CommandMenu({ role="listbox" aria-label="Available commands" className="command-menu border border-gray-200 bg-white dark:border-gray-700 dark:bg-gray-800" - style={{ ...menuPosition, ...menuBaseStyle, opacity: isOpen ? 1 : 0, transform: isOpen ? 'translateY(0)' : 'translateY(-10px)' }} + style={{ ...menuPosition, ...menuBaseStyle, opacity: 1, transform: 'translateY(0)' }} > {orderedNamespaces.map((namespace) => (