From b66dfc8617c7a66932b463129380e0c761d3c740 Mon Sep 17 00:00:00 2001 From: Diogo Date: Sat, 14 Dec 2024 21:14:53 +0000 Subject: [PATCH] remove context menu --- .../Shared/Views/ChatList/ChatListView.swift | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift index 9ce257edb0..63480ffe9d 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift @@ -718,33 +718,6 @@ struct ChatTagsView: View { .onTapGesture { setSelectedTag(tag) } - .contextMenu { - Button { - sheet = SomeSheet( - content: { - AnyView( - NavigationView { - ChatListTagEditor(editMode: true, emoji: emoji, name: text) - } - ) - }, - id: "list edit sheet" - ) - } label: { - Label( - NSLocalizedString("Edit", comment: "tag action"), - systemImage: "pencil" - ) - } - Button(role: .destructive) { - print("Delete \(text)") - } label: { - Label( - NSLocalizedString("Delete", comment: "tag action"), - systemImage: "trash" - ) - } - } } } }