diff --git a/apps/ios/Sources/Screen/ScreenController.swift b/apps/ios/Sources/Screen/ScreenController.swift index 43baf4728..ef2da373b 100644 --- a/apps/ios/Sources/Screen/ScreenController.swift +++ b/apps/ios/Sources/Screen/ScreenController.swift @@ -264,7 +264,7 @@ final class ScreenController { return false } - static func parseA2UIActionBody(_ body: Any) -> [String: Any]? { + nonisolated static func parseA2UIActionBody(_ body: Any) -> [String: Any]? { if let dict = body as? [String: Any] { return dict.isEmpty ? nil : dict } if let str = body as? String, let data = str.data(using: .utf8),