From 6853274a6770d1106aff9e9d2c4299ca78ea5662 Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Fri, 29 Jul 2022 16:20:22 -0400 Subject: [PATCH] Descriptor changes --- MVMCoreUI/OtherHandlers/MVMCoreUIActionHandler.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MVMCoreUI/OtherHandlers/MVMCoreUIActionHandler.swift b/MVMCoreUI/OtherHandlers/MVMCoreUIActionHandler.swift index 6b30353f..230e7978 100644 --- a/MVMCoreUI/OtherHandlers/MVMCoreUIActionHandler.swift +++ b/MVMCoreUI/OtherHandlers/MVMCoreUIActionHandler.swift @@ -26,7 +26,8 @@ import SafariServices } @objc(openURLInSafariWebView:) - @MainActor open func openURL(inSafariWebView url: URL) { + @MainActor + open func openURL(inSafariWebView url: URL) { let safariViewController = SFSafariViewController(url: url) MVMCoreNavigationHandler.shared()?.present(safariViewController, animated: true) }