ActionHandler to Swift

This commit is contained in:
Scott Pfeil 2022-07-22 15:17:46 -04:00
parent 9ea9894e80
commit 6c08179b2a

View File

@ -23,7 +23,7 @@ open class ActionTopAlertHandler: MVMCoreActionHandlerProtocol {
}
let alertObject = MVMCoreAlertObject(forPageType: model.pageType, responseInfo: responseInfo, additionalData: additionalData, delegateObject: delegateObject)!
(delegateObject?.actionDelegate as? MVMCoreUIActionDelegateProtocol)?.willShowTopAlert(with: alertObject, alertJson: json!)
MVMCoreAlertHandler.shared()?.showAlert(with: alertObject)
alertObject.showAlert()
continuation.resume()
})
}