From ef38578596d06d3c51d2757bf088b35f8aa39130 Mon Sep 17 00:00:00 2001 From: Simon Franken Date: Sat, 21 Feb 2026 13:57:31 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20.accentColor=20ShapeStyle=20compile=20err?= =?UTF-8?q?or=20=E2=80=94=20use=20Color.accentColor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TimeTracker/Features/Settings/SettingsView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/TimeTracker/TimeTracker/Features/Settings/SettingsView.swift b/ios/TimeTracker/TimeTracker/Features/Settings/SettingsView.swift index 0c10cb7..6e8a4fc 100644 --- a/ios/TimeTracker/TimeTracker/Features/Settings/SettingsView.swift +++ b/ios/TimeTracker/TimeTracker/Features/Settings/SettingsView.swift @@ -18,7 +18,7 @@ struct SettingsView: View { Text(user.username.prefix(1).uppercased()) .font(.title3) .fontWeight(.semibold) - .foregroundStyle(.accentColor) + .foregroundStyle(Color.accentColor) ) VStack(alignment: .leading, spacing: 2) { Text(user.fullName ?? user.username)