Remove animate block since it wasn't helping any

This commit is contained in:
Maurice Parker 2021-11-13 10:43:09 -06:00
parent f4961bdc42
commit d09cdb9663
1 changed files with 1 additions and 3 deletions

View File

@ -121,9 +121,7 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
}
guard let unreadCountNode = node, let indexPath = coordinator.indexPathFor(unreadCountNode) else { return }
UIView.animate(withDuration: 0.3) {
self.tableView.reloadRows(at: [indexPath], with: .none)
}
self.tableView.reloadRows(at: [indexPath], with: .none)
restoreSelectionIfNecessary(adjustScroll: false)
}