From ff15b8ce03b695ad33d198c73b050b58b91c96d0 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 28 Jun 2026 03:09:03 +0000 Subject: [PATCH] Make settings sign-in icon green Co-authored-by: Anam Hira --- apps/ios-sweep-alert/SweepAlertSwift/ContentView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ios-sweep-alert/SweepAlertSwift/ContentView.swift b/apps/ios-sweep-alert/SweepAlertSwift/ContentView.swift index 684f8ee..178c4e7 100644 --- a/apps/ios-sweep-alert/SweepAlertSwift/ContentView.swift +++ b/apps/ios-sweep-alert/SweepAlertSwift/ContentView.swift @@ -1953,9 +1953,9 @@ struct SettingsScreen: View { HStack(spacing: 12) { Image(systemName: authentication.isAuthenticated ? "checkmark.seal.fill" : "person.crop.circle.badge.plus") .font(.system(size: 18, weight: .bold)) - .foregroundStyle(authentication.isAuthenticated ? Color.green : sweepBlue) + .foregroundStyle(Color.green) .frame(width: 34, height: 34) - .background((authentication.isAuthenticated ? Color.green : sweepBlue).opacity(0.10)) + .background(Color.green.opacity(0.10)) .clipShape(Circle()) VStack(alignment: .leading, spacing: 2) {