Added ability to close non-primary tabs involved in a split view

This commit is contained in:
Jarrah
2025-11-10 19:01:18 +00:00
parent 9ca7df6542
commit e688b71098

View File

@@ -340,7 +340,7 @@ export function TopNavbar({
isSplitScreenActive);
const isHome = tab.type === "home";
const disableClose =
(isSplitScreenActive && isActive) || isSplit || isHome;
(isSplitScreenActive && isActive) || isHome;
const isDraggingThisTab = dragState.draggedIndex === index;
const isTheDraggedTab = tab.id === dragState.draggedId;