aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/tvOSSample/tvOSSample/AuthViewController.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Example/tvOSSample/tvOSSample/AuthViewController.swift')
-rw-r--r--Example/tvOSSample/tvOSSample/AuthViewController.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/Example/tvOSSample/tvOSSample/AuthViewController.swift b/Example/tvOSSample/tvOSSample/AuthViewController.swift
index 72351d3..56276ed 100644
--- a/Example/tvOSSample/tvOSSample/AuthViewController.swift
+++ b/Example/tvOSSample/tvOSSample/AuthViewController.swift
@@ -20,13 +20,13 @@ class AuthViewController: UIViewController {
// MARK: - User Interface
/// A stackview containing all of the buttons to providers (Email, OAuth, etc).
- @IBOutlet weak var providers: UIStackView!
+ @IBOutlet var providers: UIStackView!
/// A stackview containing a signed in label and sign out button.
- @IBOutlet weak var signedIn: UIStackView!
+ @IBOutlet var signedIn: UIStackView!
/// A label to display the status for the signed in user.
- @IBOutlet weak var signInStatus: UILabel!
+ @IBOutlet var signInStatus: UILabel!
// MARK: - User Actions