commit 2b34e88a4775e65ba0bd03f07411b8391ab5a777 parent 2aa8d527b99a859e7944047f71d9f7e94246c0ba Author: William Casarin <jb55@jb55.com> Date: Mon, 10 Apr 2023 10:02:20 -0700 Remove duplicate share sheet action Diffstat:
M | damus/Views/ActionBar/EventActionBar.swift | | | 7 | ------- |
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/damus/Views/ActionBar/EventActionBar.swift b/damus/Views/ActionBar/EventActionBar.swift @@ -112,13 +112,6 @@ struct EventActionBar: View { } } } - .sheet(isPresented: $show_share_sheet) { - if let note_id = bech32_note_id(event.id) { - if let url = URL(string: "https://damus.io/" + note_id) { - ShareSheet(activityItems: [url]) - } - } - } .onReceive(handle_notify(.update_stats)) { n in let target = n.object as! String guard target == self.event.id else { return }