Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit 59cc2ac

Browse files
committed
Login/Signup MethodVC: Make buttons private
1 parent 9044ce8 commit 59cc2ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

WordPressAuthenticator/Signin/LoginPrologueLoginMethodViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class LoginPrologueLoginMethodViewController: NUXViewController {
1414
open var appleTapped: (() -> Void)?
1515

1616
/// The big transparent (dismiss) button behind the buttons
17-
@IBOutlet weak var dismissButton: UIButton!
17+
@IBOutlet private weak var dismissButton: UIButton!
1818

1919
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
2020
super.prepare(for: segue, sender: sender)

WordPressAuthenticator/Signin/LoginPrologueSignupMethodViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class LoginPrologueSignupMethodViewController: NUXViewController {
1515
open var appleTapped: (() -> Void)?
1616

1717
/// The big transparent (dismiss) button behind the buttons
18-
@IBOutlet weak var dismissButton: UIButton!
18+
@IBOutlet private weak var dismissButton: UIButton!
1919

2020
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
2121
super.prepare(for: segue, sender: sender)

0 commit comments

Comments
 (0)