The file /Users/neog/Apps/macOS/PredictiveHistory-macOS/Features/Sidebar/SidebarView.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 189→ } 190→ } 191→} 192→ 193→struct MiniStatRow: View { 194→ let icon: String 195→ let label: String 196→ let value: String 197→ var color: Color = .secondary 198→ 199→ var body: some View { 200→ HStack(spacing: 10) { 201→ Image(systemName: icon) 202→ .font(.caption) 203→ .foregroundStyle(color) 204→ .frame(width: 18) 205→ 206→ Text(label) 207→ .font(.caption) 208→ .foregroundStyle(.secondary) 209→ 210→ Spacer() 211→ 212→ Text(value) 213→ .font(.caption.monospacedDigit().weight(.medium)) 214→ .foregroundStyle(.primary) 215→ } 216→ .padding(.vertical, 2) 217→ } 218→} 219→ 220→#Preview { 221→ SidebarView() 222→ .environmentObject(DataManager.shared)