This commit is contained in:
LukeGus
2025-08-18 00:38:38 -05:00
parent c1d06028c3
commit 53f9e888df
2 changed files with 39 additions and 3 deletions

View File

@@ -78,7 +78,6 @@ export function TabProvider({children}: TabProviderProps) {
title: effectiveTitle,
terminalRef: tabData.type === 'terminal' ? React.createRef<any>() : undefined
};
console.log('Adding new tab:', newTab);
setTabs(prev => [...prev, newTab]);
setCurrentTab(id);
setAllSplitScreenTab(prev => prev.filter(tid => tid !== id));