From 6c08179b2ab7a207ec3074fec94e2adf7b3eed45 Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Fri, 22 Jul 2022 15:17:46 -0400 Subject: [PATCH] ActionHandler to Swift --- MVMCoreUI/Atomic/Actions/ActionTopAlertHandler.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Actions/ActionTopAlertHandler.swift b/MVMCoreUI/Atomic/Actions/ActionTopAlertHandler.swift index 54302237..db37c3b1 100644 --- a/MVMCoreUI/Atomic/Actions/ActionTopAlertHandler.swift +++ b/MVMCoreUI/Atomic/Actions/ActionTopAlertHandler.swift @@ -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() }) }