diff --git a/Packages/Account/Sources/Account/AccountDetailView.swift b/Packages/Account/Sources/Account/AccountDetailView.swift index 9160ba67..7ec2f9a7 100644 --- a/Packages/Account/Sources/Account/AccountDetailView.swift +++ b/Packages/Account/Sources/Account/AccountDetailView.swift @@ -231,6 +231,10 @@ public struct AccountDetailView: View { } EmojiTextApp(field.value, emojis: viewModel.account?.emojis ?? []) .foregroundColor(theme.tintColor) + .environment(\.openURL, OpenURLAction { url in + UIApplication.shared.open(url) + return .handled + }) } .font(.scaledBody) }