From 149614bfb421cad779143fb5a9762c6c0d7a9e50 Mon Sep 17 00:00:00 2001 From: dormouse-bot <287024035+dormouse-bot@users.noreply.github.com> Date: Tue, 28 Jul 2026 09:32:25 +0000 Subject: [PATCH] chore(lib): drop dead MobileTerminalSection type alias MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Unused across the whole monorepo — a repo-wide search finds only the definition, and nothing re-exports it. Leftover from the Section -> KeyboardMode rename; live code uses MobileTerminalKeyboardMode directly. --- lib/src/components/MobileTerminalUi.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/components/MobileTerminalUi.tsx b/lib/src/components/MobileTerminalUi.tsx index 3831b54e..335f682a 100644 --- a/lib/src/components/MobileTerminalUi.tsx +++ b/lib/src/components/MobileTerminalUi.tsx @@ -44,7 +44,6 @@ import { TouchUiContext } from './touch-ui-context'; import type { SessionStatus } from '../lib/terminal-registry'; export type MobileTerminalKeyboardMode = 'sessions' | 'recent' | 'type' | 'draft'; -export type MobileTerminalSection = MobileTerminalKeyboardMode; export type MobileTerminalTouchMode = 'gestures' | 'selection' | 'cursor'; type PhosphorIcon = ComponentType<{ size?: number; weight?: 'regular' | 'bold' | 'duotone' | 'fill' }>;