diff --git a/iOS/MasterFeed/MasterFeedViewController.swift b/iOS/MasterFeed/MasterFeedViewController.swift index 9dce15c03..6a1995f86 100644 --- a/iOS/MasterFeed/MasterFeedViewController.swift +++ b/iOS/MasterFeed/MasterFeedViewController.swift @@ -876,16 +876,16 @@ private extension MasterFeedViewController { if let copyHomePageAction = self.copyHomePageAction(indexPath: indexPath) { actions.append(copyHomePageAction) } - - if includeDeleteRename { - actions.append(self.deleteAction(indexPath: indexPath)) - actions.append(self.renameAction(indexPath: indexPath)) - } if let markAllAction = self.markAllAsReadAction(indexPath: indexPath) { actions.append(markAllAction) } + if includeDeleteRename { + actions.append(self.renameAction(indexPath: indexPath)) + actions.append(self.deleteAction(indexPath: indexPath)) + } + return UIMenu(title: "", children: actions) })