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:
parent
b3c7208752
commit
f1fd6f4acc
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue