aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth/SwiftSample/ViewController.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Example/Auth/SwiftSample/ViewController.swift')
-rw-r--r--Example/Auth/SwiftSample/ViewController.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/Example/Auth/SwiftSample/ViewController.swift b/Example/Auth/SwiftSample/ViewController.swift
index d902b38..05b0dd2 100644
--- a/Example/Auth/SwiftSample/ViewController.swift
+++ b/Example/Auth/SwiftSample/ViewController.swift
@@ -232,9 +232,9 @@ final class ViewController: UIViewController, UITextFieldDelegate, AuthUIDelegat
}
case .createUser:
Auth.auth().createUser(withEmail: emailField.text!, password: passwordField.text!) {
- user, error in
+ result, error in
self.ifNoError(error) {
- self.showAlert(title: "Signed In With Credential", message: user?.textDescription)
+ self.showAlert(title: "Signed In With Credential", message: result?.user.textDescription)
}
}
case .signOut: