diff --git a/MVMCoreUI/Alerts/AlertHandler.swift b/MVMCoreUI/Alerts/AlertHandler.swift index 0d9f8744..e9f1484e 100644 --- a/MVMCoreUI/Alerts/AlertHandler.swift +++ b/MVMCoreUI/Alerts/AlertHandler.swift @@ -71,17 +71,6 @@ public class AlertHandler { let alertController = createAlertController(with: alertObject.alertModel) let alertOperation = AlertOperation(with: alertController, alertObject: alertObject) - - // If an existing greedy alert is showing, add it as a dependency. - if let greedyAlertOperation = queue.operations.first(where: { operation in - guard !operation.isFinished, - !operation.isCancelled, - let alertOperation = operation as? AlertOperation else { return false } - return alertOperation.alertObject.isGreedy - }) { - alertOperation.addDependency((greedyAlertOperation as! AlertOperation)) - } - queue.addOperation(alertOperation) return alertController }