From f1fd6f4acccd640bbf2986c3ac5e4d18062ac449 Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Tue, 30 Dec 2025 02:02:29 -0800 Subject: [PATCH] fix(conversation-assistant): Swift 6 compatibility for foregroundStyle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change .foregroundColor(.tertiary) to .foregroundStyle(.tertiary) since .tertiary is a ShapeStyle, not Color, in Swift 6. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../macos/Sources/Views/MenuBarView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/conversation-assistant/macos/Sources/Views/MenuBarView.swift b/features/conversation-assistant/macos/Sources/Views/MenuBarView.swift index 833974008..ac957d4ec 100644 --- a/features/conversation-assistant/macos/Sources/Views/MenuBarView.swift +++ b/features/conversation-assistant/macos/Sources/Views/MenuBarView.swift @@ -253,7 +253,7 @@ struct ActivityLogSection: View { if entries.isEmpty { Text("No recent activity") .font(.caption2) - .foregroundColor(.tertiary) + .foregroundStyle(.tertiary) .padding(.horizontal) } else { ScrollView { @@ -305,7 +305,7 @@ struct ActivityLogRow: View { Text(timeText) .font(.caption2) - .foregroundColor(.tertiary) + .foregroundStyle(.tertiary) } .padding(.vertical, 2) }