From b69a718b22aac1a44ff5587246673b6c0797fbd4 Mon Sep 17 00:00:00 2001 From: Valentin Vila Date: Thu, 21 Mar 2024 12:57:16 -0300 Subject: [PATCH] remove hardcoded colour from Image --- App/App_macOS.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/App_macOS.swift b/App/App_macOS.swift index 8b81ef1e..b234d32b 100644 --- a/App/App_macOS.swift +++ b/App/App_macOS.swift @@ -105,7 +105,7 @@ struct RootView: View { .safeAreaInset(edge: .bottom) { Link(destination: URL(string: "donations.url".localized)!) { HStack { - Image(systemName: "heart").foregroundColor(.blue) + Image(systemName: "heart") Text("enum.navigation_item.donations".localized) .foregroundColor(.foregroundColor(.systemTextColor)) }