fix(conversation-assistant): Swift 6 compatibility for foregroundStyle

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 <noreply@anthropic.com>
This commit is contained in:
Quinn Ftw 2025-12-30 02:02:29 -08:00
parent b3c7208752
commit f1fd6f4acc

View file

@ -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)
}