fix: panels don't clobber the tab bar anymore

This commit is contained in:
2026-02-11 22:32:57 +01:00
parent b33df6e131
commit b64512041f
2 changed files with 14 additions and 18 deletions

View File

@@ -229,10 +229,6 @@ export const TabBar: React.FC = () => {
return () => window.removeEventListener('keydown', handleKeyDown);
}, [activeTabId, closeTab, toggleSidebar]);
if (tabs.length === 0) {
return null;
}
const handleTabClick = (tabId: string) => {
setActiveTab(tabId);
};