Fix About view crash on macOS

This commit is contained in:
Thomas Ricouard 2023-12-29 14:21:12 +01:00
parent 59c0b841c2
commit 67969f595a

View file

@ -27,6 +27,7 @@ struct AboutView: View {
var body: some View { var body: some View {
List { List {
Section { Section {
#if !targetEnvironment(macCatalyst)
HStack { HStack {
Spacer() Spacer()
Image(uiImage: .init(named: "AppIconAlternate0")!) Image(uiImage: .init(named: "AppIconAlternate0")!)
@ -47,6 +48,7 @@ struct AboutView: View {
.cornerRadius(4) .cornerRadius(4)
Spacer() Spacer()
} }
#endif
Link(destination: URL(string: "https://github.com/Dimillian/IceCubesApp/blob/main/PRIVACY.MD")!) { Link(destination: URL(string: "https://github.com/Dimillian/IceCubesApp/blob/main/PRIVACY.MD")!) {
Label("settings.support.privacy-policy", systemImage: "lock") Label("settings.support.privacy-policy", systemImage: "lock")
} }