Merge pull request #1004 from mpretty-cyro/fix/remove_incorrect_contact_actions

Removed the incorrect swipe actions from the contacts list
pull/1006/head
Morgan Pretty 8 months ago committed by GitHub
commit b0c40c678a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -489,19 +489,4 @@ extension GlobalSearchViewController {
return cell
}
}
public func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
guard self.searchResultSet.state == .defaultContacts else { return nil }
return UIContextualAction.configuration(
for: UIContextualAction.generateSwipeActions(
[ .block, .delete ],
for: .trailing,
indexPath: indexPath,
tableView: tableView,
threadViewModel: self.searchResultSet.data[indexPath.section].elements[indexPath.row],
viewController: self
)
)
}
}

Loading…
Cancel
Save