Skip to content

Commit

Permalink
Add missing self reference
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoncal committed Nov 7, 2023
1 parent b632b73 commit e300ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/App/WebView/WebViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ class WebViewController: UIViewController, WKNavigationDelegate, WKUIDelegate, U
guard let self else { return }
self.biometricOverlay.removeFromSuperview()
self.biometricOverlay.translatesAutoresizingMaskIntoConstraints = false
self.view.addSubview(biometricOverlay)
self.view.addSubview(self.biometricOverlay)
NSLayoutConstraint.activate([
self.biometricOverlay.topAnchor.constraint(equalTo: self.view.topAnchor),
self.biometricOverlay.bottomAnchor.constraint(equalTo: self.view.bottomAnchor),
Expand Down

0 comments on commit e300ba5

Please sign in to comment.