Fix account open in browser

This commit is contained in:
Thomas Ricouard 2023-01-22 12:26:33 +01:00
parent c95f65ea59
commit a2abdfede1
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ public struct AccountDetailView: View {
if let url = account.url {
ShareLink(item: url)
Button { openURL(url) } label: {
Button { UIApplication.shared.open(url) } label: {
Label("status.action.view-in-browser", systemImage: "safari")
}
}