From 277e95d07e21874dcac71b934e733bd6eddbd72c Mon Sep 17 00:00:00 2001 From: Lawrence Chen <54008264+lawrencecchen@users.noreply.github.com> Date: Fri, 20 Feb 2026 22:35:14 -0800 Subject: [PATCH] Use non-path separator for branch directory rows --- Sources/ContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ContentView.swift b/Sources/ContentView.swift index 7818bd91..4da9e159 100644 --- a/Sources/ContentView.swift +++ b/Sources/ContentView.swift @@ -2744,7 +2744,7 @@ private struct TabItemView: View { switch (branchText, directoryText) { case let (branch?, directory?): - return "\(branch) / \(directory)" + return "\(branch) @ \(directory)" case let (branch?, nil): return branch case let (nil, directory?):