diff --git a/packages/coding-agent/src/modes/interactive/components/tree-selector.ts b/packages/coding-agent/src/modes/interactive/components/tree-selector.ts index 9f143f8f..7be8fa18 100644 --- a/packages/coding-agent/src/modes/interactive/components/tree-selector.ts +++ b/packages/coding-agent/src/modes/interactive/components/tree-selector.ts @@ -365,7 +365,7 @@ class TreeList implements Component { // Active path marker - shown right before the entry text const isOnActivePath = this.activePathIds.has(entry.id); - const pathMarker = isOnActivePath ? theme.fg("accent", "●") : ""; + const pathMarker = isOnActivePath ? theme.fg("accent", "• ") : ""; const label = flatNode.node.label ? theme.fg("warning", `[${flatNode.node.label}] `) : ""; const content = this.getEntryDisplayText(flatNode.node, isSelected);