Revert "feat(desktop): Terminal Splits (#8767)"

This reverts commit 88fd6a294b.
This commit is contained in:
Adam 2026-01-16 14:03:13 -06:00
commit 71306cbd1f
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
7 changed files with 71 additions and 729 deletions

View file

@ -14,8 +14,8 @@ export function SortableTerminalTab(props: { terminal: LocalPTY }): JSX.Element
<Tabs.Trigger
value={props.terminal.id}
closeButton={
terminal.tabs().length > 1 && (
<IconButton icon="close" variant="ghost" onClick={() => terminal.closeTab(props.terminal.tabId)} />
terminal.all().length > 1 && (
<IconButton icon="close" variant="ghost" onClick={() => terminal.close(props.terminal.id)} />
)
}
>