1 parent 0ae0d2a commit ec512b4Copy full SHA for ec512b4
1 file changed
app/lib/desktop/chat/desktop_sidebar.dart
@@ -258,7 +258,6 @@ class _WorktreeGroupState extends ConsumerState<_WorktreeGroup> {
258
final worktree = widget.worktree;
259
final sessions = widget.sessions;
260
final branch = worktree.branch ?? 'detached';
261
- final isDefault = worktree.branch == repo.defaultBranch;
262
final isCurrent =
263
worktree.branch != null && worktree.branch == repo.currentBranch;
264
// A worktree with no sessions is selectable: clicking it opens the harness
@@ -323,13 +322,6 @@ class _WorktreeGroupState extends ConsumerState<_WorktreeGroup> {
323
322
color: theme.colorScheme.outline,
324
),
325
],
326
- if (isDefault) ...[
327
- const SizedBox(width: 6),
328
- TagChip(
329
- label: 'default',
330
- color: theme.colorScheme.outline,
331
- ),
332
- ],
333
334
335
0 commit comments