Remove unneeded semicolons.

This commit is contained in:
Brent Simmons 2025-01-19 22:13:28 -08:00
parent 65936f3a1b
commit ef09d80d44

View File

@ -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]