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) {