diff --git a/ios/Platform/Platform/Features/Reader/Views/ArticleWebView.swift b/ios/Platform/Platform/Features/Reader/Views/ArticleWebView.swift index f2d10ca..977ffaf 100644 --- a/ios/Platform/Platform/Features/Reader/Views/ArticleWebView.swift +++ b/ios/Platform/Platform/Features/Reader/Views/ArticleWebView.swift @@ -9,15 +9,8 @@ final class ArticleRenderer { let webView: WKWebView - // Explicit shared process pool — guarantees all WebViews share - // one WebContent process, even though iOS 15+ does this by default. - // Being explicit prevents accidental divergence if a second - // WKWebView is ever created elsewhere. - static let processPool = WKProcessPool() - private init() { let config = WKWebViewConfiguration() - config.processPool = ArticleRenderer.processPool config.allowsInlineMediaPlayback = true webView = WKWebView(frame: .zero, configuration: config)