fix: properly split tabs, still need to fix up the host manager

This commit is contained in:
LukeGus
2025-12-29 01:44:29 -06:00
parent 5865019c8c
commit 7c850c1072
18 changed files with 837 additions and 4307 deletions

View File

@@ -29,7 +29,7 @@ function AppContent() {
const [transitionPhase, setTransitionPhase] = useState<
"idle" | "fadeOut" | "fadeIn"
>("idle");
const { currentTab, tabs } = useTabs();
const { currentTab, tabs, updateTab } = useTabs();
const [isCommandPaletteOpen, setIsCommandPaletteOpen] = useState(false);
const { theme, setTheme } = useTheme();
const [rightSidebarOpen, setRightSidebarOpen] = useState(false);
@@ -280,6 +280,8 @@ function AppContent() {
_updateTimestamp={currentTabData?._updateTimestamp}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
currentTabId={currentTab}
updateTab={updateTab}
/>
</div>
)}