Skip to content

Commit 502ac9e

Browse files
committed
refactor(settings): remove kanban display section from settings view
Moved kanban display configuration from settings to board view to improve UX. Removed KanbanDisplaySection component, related imports, and navigation items.
1 parent e6e2fa7 commit 502ac9e

2 files changed

Lines changed: 0 additions & 106 deletions

File tree

app/src/components/views/settings-view.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
Palette,
99
Terminal,
1010
Atom,
11-
LayoutGrid,
1211
FlaskConical,
1312
Trash2,
1413
Settings2,
@@ -27,7 +26,6 @@ import { ApiKeysSection } from "./settings-view/api-keys/api-keys-section";
2726
import { ClaudeCliStatus } from "./settings-view/cli-status/claude-cli-status";
2827
import { CodexCliStatus } from "./settings-view/cli-status/codex-cli-status";
2928
import { AppearanceSection } from "./settings-view/appearance/appearance-section";
30-
import { KanbanDisplaySection } from "./settings-view/kanban-display/kanban-display-section";
3129
import { KeyboardShortcutsSection } from "./settings-view/keyboard-shortcuts/keyboard-shortcuts-section";
3230
import { FeatureDefaultsSection } from "./settings-view/feature-defaults/feature-defaults-section";
3331
import { DangerZoneSection } from "./settings-view/danger-zone/danger-zone-section";
@@ -43,7 +41,6 @@ const NAV_ITEMS = [
4341
{ id: "claude", label: "Claude", icon: Terminal },
4442
{ id: "codex", label: "Codex", icon: Atom },
4543
{ id: "appearance", label: "Appearance", icon: Palette },
46-
{ id: "kanban", label: "Kanban Display", icon: LayoutGrid },
4744
{ id: "audio", label: "Audio", icon: Volume2 },
4845
{ id: "keyboard", label: "Keyboard Shortcuts", icon: Settings2 },
4946
{ id: "defaults", label: "Feature Defaults", icon: FlaskConical },
@@ -55,8 +52,6 @@ export function SettingsView() {
5552
theme,
5653
setTheme,
5754
setProjectTheme,
58-
kanbanCardDetailLevel,
59-
setKanbanCardDetailLevel,
6055
defaultSkipTests,
6156
setDefaultSkipTests,
6257
useWorktrees,
@@ -166,11 +161,6 @@ export function SettingsView() {
166161
onThemeChange={handleSetTheme}
167162
/>
168163

169-
{/* Kanban Card Display Section */}
170-
<KanbanDisplaySection
171-
detailLevel={kanbanCardDetailLevel}
172-
onChange={setKanbanCardDetailLevel}
173-
/>
174164

175165
{/* Keyboard Shortcuts Section */}
176166
<KeyboardShortcutsSection

app/src/components/views/settings-view/kanban-display/kanban-display-section.tsx

Lines changed: 0 additions & 96 deletions
This file was deleted.

0 commit comments

Comments
 (0)