Do not update providers in-app

This commit is contained in:
Davide De Rosa 2020-12-12 17:18:57 +01:00
parent 5cb72de837
commit a6f59f72bb
1 changed files with 7 additions and 7 deletions

View File

@ -146,15 +146,15 @@ class WizardProviderViewController: UITableViewController, StrongTableHost {
return
}
ProductManager.shared.listProducts { (products, error) in
hud.hide()
if let error = error {
log.error("Unable to list products: \(error)")
return
}
// ProductManager.shared.listProducts { (products, error) in
// hud.hide()
// if let error = error {
// log.error("Unable to list products: \(error)")
// return
// }
self?.reloadModel()
self?.tableView.reloadData()
}
// }
}
}