From 78fdba9dba79d94c024cfd2fca8c62500dcbe933 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Tue, 17 Feb 2026 10:08:29 -0800 Subject: [PATCH] lint --- .../copilot/components/tool-call/tool-call.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx index 83c053e15..53af845ef 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx @@ -391,7 +391,15 @@ export function OptionsSelector({ document.addEventListener('keydown', handleKeyDown) return () => document.removeEventListener('keydown', handleKeyDown) - }, [isInteractionDisabled, enableKeyboardNav, isLocked, sortedOptions, hoveredIndex, onSelect, activeTab]) + }, [ + isInteractionDisabled, + enableKeyboardNav, + isLocked, + sortedOptions, + hoveredIndex, + onSelect, + activeTab, + ]) if (sortedOptions.length === 0) return null