diff --git a/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift b/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift index 3f326d949..58d00977e 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift @@ -70,7 +70,7 @@ struct NewsletterEmailsView: View { Section(header: Text("Existing Emails (Tap to copy)")) { ForEach(viewModel.emails) { newsletterEmail in Button( - action: {}, + action: { UIPasteboard.general.string = newsletterEmail.email }, label: { Text(newsletterEmail.email) } ) }