From ef09d80d44931a968563dbd6b629dce663ab027f Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 19 Jan 2025 22:13:28 -0800 Subject: [PATCH] Remove unneeded semicolons. --- iOS/Article/WebViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/Article/WebViewController.swift b/iOS/Article/WebViewController.swift index 258a7c2c2..21c36ca93 100644 --- a/iOS/Article/WebViewController.swift +++ b/iOS/Article/WebViewController.swift @@ -515,8 +515,8 @@ private extension WebViewController { let configuration = WebViewConfiguration.configuration(with: articleIconSchemeHandler) let webView = WKWebView(frame: self.view.bounds, configuration: configuration) - webView.isOpaque = false; - webView.backgroundColor = .clear; + webView.isOpaque = false + webView.backgroundColor = .clear // Add the webview - using autolayout will cause fullscreen video to fail and lose the web view webView.autoresizingMask = [.flexibleWidth, .flexibleHeight]