From 9635d14599f226f556dbea232757d59f2fa92df6 Mon Sep 17 00:00:00 2001 From: MokireddySampath <120497218+MokireddySampath@users.noreply.github.com> Date: Wed, 12 Jul 2023 22:29:43 +0530 Subject: [PATCH] removing the connect value for ariacontrols variable (#1527) --- src/Explorer/Tabs/Tabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Explorer/Tabs/Tabs.tsx b/src/Explorer/Tabs/Tabs.tsx index 4a0d3af35..fc8e6ac71 100644 --- a/src/Explorer/Tabs/Tabs.tsx +++ b/src/Explorer/Tabs/Tabs.tsx @@ -68,7 +68,7 @@ export const Tabs = ({ explorer }: TabsProps): JSX.Element => { function TabNav({ tab, active, tabKind }: { tab?: Tab; active: boolean; tabKind?: ReactTabKind }) { const [hovering, setHovering] = useState(false); const focusTab = useRef() as MutableRefObject; - const tabId = tab ? tab.tabId : "connect"; + const tabId = tab ? tab.tabId : ""; const getReactTabTitle = (): ko.Observable => { if (tabKind === ReactTabKind.QueryCopilot) {