Rename Delete Status -> Delete Post

This commit is contained in:
Shadowfacts 2023-01-18 15:05:12 -05:00
parent bf739b9f41
commit 5123cf20c3
1 changed files with 2 additions and 2 deletions

View File

@ -294,9 +294,9 @@ extension MenuActionProvider {
}))
}
actionsSection.append(UIMenu(title: "Delete Status", image: UIImage(systemName: "trash"), children: [
actionsSection.append(UIMenu(title: "Delete Post", image: UIImage(systemName: "trash"), children: [
UIAction(title: "Cancel", handler: { _ in }),
UIAction(title: "Delete Status", image: UIImage(systemName: "trash"), attributes: .destructive, handler: { [weak self] _ in
UIAction(title: "Delete Post", image: UIImage(systemName: "trash"), attributes: .destructive, handler: { [weak self] _ in
guard let self,
let navigationDelegate = self.navigationDelegate else {
return